The guide says:

select(string $fieldName, array $options, mixed $selected, array $attributes)

There are only four attributes and you have five. Try:

$this->Form->select('city_id', $city, 1, array('empty' => true));

Jeremy Burns
Class Outfit

jeremybu...@classoutfit.com
http://www.classoutfit.com

On 2 Jul 2010, at 08:56, sherzo wrote:

> 
> Hi
> 
> Here is the content of my array
> 
> Array
> (
>    [4] => Adana
>    [2] => Ankara
>    [1] => Istanbul
>    [3] => Izmir
> )
> 
> its wired!!!
> 
> when I use  echo $form->select('city_id',$city,  array ('empty'=> false),
> false, false);
> 
> it doesnt show the empty space but it sends the city_id value as undefined
> !!!
> 
> 
> Jeremy Burns | Class Outfit wrote:
>> 
>> A couple of thoughts...
>> 
>> What is in the $city array? This will be used to populate the select list,
>> so if there's an empty row there, you'll get an empty row in the list.
>> 
>> Is there an option with an id of 1? If not, your default value might be
>> messing things up a bit.
>> 
>> Jeremy Burns
>> Class Outfit
>> 
>> jeremybu...@classoutfit.com
>> http://www.classoutfit.com
>> 
>> On 2 Jul 2010, at 08:25, sherzo wrote:
>> 
>>> 
>>> Hi all
>>> 
>>> I have a selectbox like this
>>> 
>>> $form->select('city_id',$city,  array ('empty'=>false, 'selected'=>'1',
>>> 'label'=> false), array('label'=>false, 'div'=>false, 'name'=>'city_id',
>>> 'id'=>'city_id'));
>>> 
>>> I need to remove the empty option at the top of my options. I even set
>>> the
>>> ''empty'=>false' but it not works!!!
>>> 
>>> Can anyone help me please
>>> 
>>> Thanks
>>> -- 
>>> View this message in context:
>>> http://old.nabble.com/Hide-empty-value-in-select-box-tp29053216p29053216.html
>>> Sent from the CakePHP mailing list archive at Nabble.com.
>>> 
>>> 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 unsubscribe from this group, send email to
>>> cake-php+unsubscr...@googlegroups.com For more options, visit this group
>>> at http://groups.google.com/group/cake-php?hl=en
>> 
>> 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 unsubscribe from this group, send email to
>> cake-php+unsubscr...@googlegroups.com For more options, visit this group
>> at http://groups.google.com/group/cake-php?hl=en
>> 
>> 
> 
> -- 
> View this message in context: 
> http://old.nabble.com/Hide-empty-value-in-select-box-tp29053216p29053405.html
> Sent from the CakePHP mailing list archive at Nabble.com.
> 
> 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 unsubscribe from this group, send email to
> cake-php+unsubscr...@googlegroups.com For more options, visit this group at 
> http://groups.google.com/group/cake-php?hl=en

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 unsubscribe from this group, send email to
cake-php+unsubscr...@googlegroups.com For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en

Reply via email to