In my application, I need to include form controls within CuteEditor. Unfortunately, they don't behave properly. For instance, if a dropdown list in in the editor and it's dropped down, it will immediately close back up. This HTML will reproduce this behavior in any of the demos:
<span contenteditable="false">
<select id="dropDown1" name="dropDown1">
<option value="" selected>a</option>
<option value="">b</option>
</select>
</span>
It looks like dropping down the list invokes a JavaScript event that results in some kind of a refresh (there's some activity going on in the toolbar while this is happening). Does anyone have any ideas on how I can get around this?
Thanks,
Ken Miller
Solventus LLC