I'm using CreateFormStart to make a Form that has several checkboxes in it. In the template I put a javascript with a "select all" function and a HREF that fires this function.
Is there a way to grab the form's name generated by CreateFormStart()?
I've read the source of the parsed page and the form's name is "m1_moduleform_2".
If I put this name in the HREF it works:
Code: Select all
<a href="javascript:SetAllCheckBoxes('m1_moduleform_2', 'delete[]', true);">
Thank you