Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am using a Select element, in form

'country' =>new sfWidgetFormChoice(array('choices' => CountryPeer::getAllCountry())),

'city' =>new sfWidgetFormChoice(array('choices' => CityPeer::getAllCity())),

i want that city element to be disabled, at the first time when the page loads. and on selection of country the city element will be enabled.(it will be loaded through AJAX call)

share|improve this question

4 Answers

up vote 7 down vote accepted

You can disable like this

$this->widgetSchema['country']->setAttribute('disabled', 'disabled');

share|improve this answer
Yeah! This works the select option is disabled at first time when the form loads. thanks Metoikos! – Harish Kurup Nov 26 '09 at 5:13

$this->widgetSchema['field']->setAttribute('readonly', 'readonly');

share|improve this answer
thanks for your answer, i will try this and let you know as ->setAttribute('disabled', 'disabled'); worked for me. – Harish Kurup Jul 27 '11 at 5:27
This is the correct way. If you set to disabled and submit the form, and form does not pass validation, any widgets set to disabled will not be reloaded. Setting to readonly worked in my sitch. – Mike Purcell Feb 8 at 2:00

If you already load the data of the second list via AJAX, why don't you disable and enable the second list via Javascript?

The disabling could be done either hardcoded in the template (with plain HTML) or done by Javascript (after document load).

For the enabling, use a callback method for the AJAX call (on the success event).

It would be could to know, how you actually do the AJAX call (jquery?).

share|improve this answer

Well, most clean way is to learn "how to write your own widget" and actually write it. You can take a look at sfWidgetFormDate as a rough example.

share|improve this answer

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.