In Symfony2 form component is it possible to create custom attributes?

The reason why I ask is because I'm working on a certain edge case where read_only will not be sufficient.

Here is the scenario: I need to bind data based on the outcome of some external logic parsing. This is crucial because I may have fields that are disabled by default but based on the external logic the fields may be activated. I cannot use client scripting to produce this outcome, it has to be disabled in the form attribute.

If I start with the field as read_only, it will be disabled, but I will never be able to bind data to it. So given the outcome of my aforementioned external logic, I will not be able to use read_only. So this leaves me with no other option but using a different attribute which will make the field disabled.

Is it possible to create a custom attribute to produced this disabled effect?

link|improve this question
What is this "external logic parsing"? From what I gather, you're looking to make a form field optionally required based on some other criteria, but you don't describe what that criteria is so it makes it hard to figure out exactly where the solution should be. Is it the result of an AJAX call, form update, or something internal to your controller? – James Alday Dec 14 '11 at 20:59
feedback

3 Answers

I'm not sure I've understood your question correctly; do you want to add arbitrary attributes to your form input tags? For example:

<input type="text" name="myInput" myAttr="myValue" />

If this is what you want to do, then this is possible, like so:

$form = $this->createFormBuilder($someObj)
        ->add('myInput', 'text', array(
             'attr' => array('myAttr' => 'myValue')
        )
        ->getForm();

The documentation is here:

http://symfony.com/doc/2.0/reference/forms/types/field.html

link|improve this answer
feedback

Your limitation is not Symfony, your limitation is HTML and HTTP. Unfortunately, once the HTTP request is fulfilled, once that data is sent to the browser, there is nothing a server can do to change what is rendered (well, almost nothing, there is always Skynet). The only option is JavaScript (and that can do a lot if they're not running Lynx).

I saw your question on Google Groups and based on the combination of both of them, I can tell you that you only have two options.

  • You can make the option appear as a response to the first response you have from the browser.
  • You can use JavaScript and then handle any failures on the server side.

Your best bet? I think the users will appreciate the JavaScript option. It is good policy to validate user information server-side anyway. Obviously let the user know as soon as possible by validating with JavaScript, but you'll need to be checking their input on the server anyway.

By the way, to disable a form field in Symfony, step-by-step instructions are here.

link|improve this answer
Read only doesn't work because, in Symfony2 (not Symfony1) if the field is read_only it will not be possible to bind data to the disabled field, which is the reason why I want to make my own custom attribute for disabled so it can be disabled without being read only. Using Javascript to disable the field is only a work around because the html document will still be semantically incorrect. – Jesse Greathouse Sep 3 '11 at 4:45
feedback

Hard to tell exactly what you're looking to do, but sounds like you want dynamically generated forms based on some event, which is described here:

http://symfony.com/doc/2.0/cookbook/form/dynamic_form_generation.html

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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