How do I implement Advanced combobox in CakePHP
- by skr
I have implemented combobox in cakephp using following statement -
echo $form->select('brand_id',array($brands),null,array(),'Choose Brand');
for brand and input form for category -
echo $form->input('category_id',array('type'=>'select',$categories,'empty'=>'Choose Category'));
but none of above option allows me to add my text…