21309 Posts in 5738 Topics by 2603 members
|
Page:
1
|
Go to End | |
| Author | Topic: | 191 Views |
-
Give a Form Fieldset an ID

16 August 2012 at 2:46am
How can i give a form fieldset an id?
or would have to do a custom template.ss form?
eg: php code
$fields = new FieldSet(
whatever)
only gives me
front end output
<fieldset>but i want <fieldset id="delegates">
and it needs to be on a fieldset not a div or other TAG
any ideas?
-
Re: Give a Form Fieldset an ID

17 August 2012 at 8:10pm
The fieldset class doesn't wrap the fields in a 'fieldset' (terrible naming). It's actually part of the template (https://github.com/silverstripe/sapphire/blob/2.4/templates/Includes/Form.ss#L10) so you'd either need to do a custom template or put the ID on a div within the fieldset.
-
Re: Give a Form Fieldset an ID

17 August 2012 at 10:34pm
thanks for the info.
I was using a piece of javascript found at http://vipullimbachiya.com/?p=349
to duplicate fields and was stuck and thinking the js would only work on the <filedset> id, but luckily it can work on a div as well.
| 191 Views | ||
|
Page:
1
|
Go to Top |


