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
2010-03-09 22:28:06
Fantastic! I arrived at a similar solution, but - as you suggested - I placed the code in the plugin. Many thanks!
Upper Stage
2010-03-10 00:59:34