Monday, May 7, 2012

Re: Input field READONLY

Hey,

a disabled field will not show up within the controller's $this->data array. To have a deactivated input that will show up within the controller, but cannot be changed by a user (but by jQuery for example) use the attribute 'readonly' => true:

Example:

echo $this->Form->input('Model.fieldname', array(
    'readonly' => true
));

--
Our newest site for the community: CakePHP Video Tutorials http://tv.cakephp.org
Check out the new CakePHP Questions site http://ask.cakephp.org and help others with their CakePHP related questions.
 
 
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

No comments: