Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am stumped beyond belief.

I have a select box being generated by the cakephp form helper. I am feeding it an array of options, and passing an empty value... pretty standard stuff.

However, my "empty" field is showing up at the very bottom of the list.. not the top. So when the field loads, it just defaults to the first option... which is not the "empty" option.

Not a whole lot of room for error on the code here..

echo $this->Form->input('whatever',array('empty'=>'Choose One','options'=>$categories));

The only small item that might be important, is that $categories is a multi-array, so the select box has optgroups & options.

Is there some quirk/bug out there that I do not know of that is trying to force me to sneak into my scotch supply a few hours ahead of schedule?

edit: using the latest release of cakephp 1.3.x

share|improve this question
Try setting 'type'=>'select' ? – Dave Mar 4 '12 at 18:38

1 Answer

up vote 0 down vote accepted

I think that I once had the same problem. It turned out to be the data (options array).

Is there an option with an empty key? probably the last one then. this lead to the scenario I remember and seems to be the exact same thing. the form helper will override this empty key value pair then and not create a second one.

without more infos from your end this will be difficult to solve.

share|improve this answer
You were 100% right you magnificent bastard :) And I was really looking forward to dipping into the scotch... guess I got to get back to the grind now. – Ryan Mar 4 '12 at 18:49
I am sry to disappoint you an that one. and thx for the flours. not that big of a deal though. if sth like that happens and you spend some good time searching for the solution you don't forget it that easy :) – mark Mar 4 '12 at 18:57

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.