Zand Php Cake Php

Posted by : gimper daniel
showEmpty?
I am new to cake... i have been doing a lot of reading, but somethings

i still can't figure out.



This is what I have:



echo $form->select('State', array('NJ' => New Jersey', 'NY' => 'New

York'));



I want to remove the empty option of this select box. According to the

API I need to add $showEmpty = false to the code above.. but where do

I add it? I tried in several different locations and it won't work.



Thanks
 
 
Posted by : Gonzalo Serva
Re : showEmpty?
The function's arguments are:



select($fieldName, $options = array(), $selected = null, $attributes =

array(), $showEmpty = '')



You only supplied the first and second arguments so if you want to

keep the defaults for the rest except for $showEmpty, you'd need to do

something like the following:



echo $form->select('State', array('NJ' => 'New Jersey', 'NY' => 'New

York'), null, array(), false)



(notice I kept the defaults "null" and "array()" for the arguments

between $options and $showEmpty)
 
 
If you have the better reply, then send it to us. We will display your reply after the approval.
Name : 
Email Id :   
Reply :