We have an application where our users can create their own forms using CKEditor.
We want to give our (advanced) users the option to add their own "custom" attributes to form fields using the Source Code editor. However, if you add your own attributes this way, CKEditor removes them. So for instance this:
<input name="thename" type="text" value="thevalue" myattribute="something">
Will default back to:
<input name="thename" type="text" value="thevalue">
Is there a way to prevent this and allow custom attributes?