Re: Multiple Select Question - Only add choices?

2010-03-04 Thread LunarDraco
the array('multiple'='checkbox') is a nice feature, but I think your outside its intended use. I ran into a simular situation. I built a foreach loop that creates each checkbox individually. In your case if your going to set the checked value you would also add a disabled attribute. On Mar 3,

Re: Multiple Select Question - Only add choices?

2010-03-04 Thread TimG
Good idea - thanks! Check out the new CakePHP Questions site http://cakeqs.org and help others with their CakePHP related questions. You received this message because you are subscribed to the Google Groups CakePHP group. To post to this group, send email to cake-php@googlegroups.com To

Multiple Select Question - Only add choices?

2010-03-02 Thread TimG
Hey, I have a multiple select that is being displayed as checkboxes thanks to the array('multiple'='checkbox') code. I need to set it somehow so that users can only select new items. So they can check new checkboxes but not uncheck boxes that are already checked when the page loads. I figured out