When CKEditor is loaded and I'm editing the stuff, I want the background to be yellow as I edit.
How do I "set" that stylesheet inside the editor.
|
When CKEditor is loaded and I'm editing the stuff, I want the background to be yellow as I edit. How do I "set" that stylesheet inside the editor.
| |||
feedback
|
|
There is an option
And you would also define you
EDIT. Using config.jsThere are couple of ways to achive what you need using
Create
That's it. | |||||||||||||||
feedback
|
|
Create a CSS class that has the background color you want, then use jQuery
| |||
|
feedback
|
|
Something like this:
Hope it helps | |||
|
feedback
|
|
If you want to go a bit further you can actually define your custom style sheet from your javascript at run time -
And then when you are done with it, you can delete it, if you so desire. You could of course use plain JavaScript to do this. I used jQuery here just to be concise. This method sort of helps when your plugins virtualise your rows and you don't want to crowd your style sheets with rules that may or may not be used. So when the rows are deleted and inserted (assuming you have quite a lot of custom styling on these rows), you don't need to keep digging through the DOM to re apply the styles -> generate your css and be done with. | |||
|
feedback
|