Sunday, May 30, 2010

Select options after validate are not displayed

I have that problem that after validation, when it is again diplayed
my form with error messages, there are no options in select fields. It
is because options in select filds are variables declared and defined
in controller action, so after validation thoose variables aren't
declared and defined. What should I do?

This is controllers variables:

$acctypes = $this->Acctype->find('list',array(
'fields' => array('id','title')
));
$cities = $this->City->find('list',array(
'fields' => array('id','title')
));
$facilities = $this->Facility->find('list',array(
'fields' => array('id','title')
));
$this->set(compact('cities','acctypes','facilities'));

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

No comments: