Hello,

if I set an id on a databound input, it gets ignored. Instead, the name field is used as id:

<cms:input type="bound" id="c_planende" name="planende" onfocus="this.select();" value=""/>

This results in the final form input in html to have id="planende". This is quite problematic since i'm trying to edit pages from various different input forms which all do slightly different stuff and various things, especially labels don't work correctly because I can't assign unique IDs to the different input forms.

Any ideas?