I am using Zend Form and Dojo. I have a whole bunch of ids that are identical. If you look at the following code you can see my current look :
<dt id="addElement-label"> </dt><dd id="addElement-element"> <button name="createEventForm[categoryDetail][addElement]" id="createEventForm-categoryDetail-addElement" type="button">addElement</button></dd>
Here is what I would like it to look like
<dt id="createEventForm-categoryDetail-addElement-label"> </dt><dd id="createEventForm-categoryDetail-addElement-element"> <button name="createEventForm[categoryDetail][addElement]" id="createEventForm-categoryDetail-addElement" type="button">addElement</button></dd>
I want to do this as currently this created quite a few identical Ids and that is causing other issues.