views:

27

answers:

1

Does anybody know how to disable the default CKEditor behavior that changes the RichCombo label on click? I want the label to remain untouched regardless of the user selection.

+1  A: 

In the richcombo plugin you can alter it at the setValue function (line 292) deleting all the code after the first line

this._.value = value;

After you verify that this is what you want you can try to put it in a plugin if you don't like to alter the source files. (I didn't try this)

AlfonsoML
Fantastic! I arrived at a similar solution, but - as you suggested - I placed the code in the plugin. Many thanks!
Upper Stage