the title might be a bit confusing..
basicaly im stuck adding a spell checker to ckeditor (not the insanely expensive SCAYT provider that comes with ckeditor)
im making use of a heavily modified jquery spellchecker plugin. it adds the button and works on.. except that it doesnt have the option to select a language.
so.. what im trying to do at the moment is to add a 2nd "select language" drop down to the toolbar. when you click the spellchecker button it sets the ckeditor to read only.
so..
to sum up.. i have 2 plugins that add buttons (1 adds a combobox).
when you click the spellchecker i would like the dropdown box to show.. (the spellchecker has create / destroy methods for "if selected it sets readonly and runs the plugin | if not set it sets readonly to false and stops the plugin" )
Q1. how do you set a button to be hidden when readonly = false and to show when readonly = true
Q2. is it possible to use a normal <select> on the toolbar?
Q3. how do you get 2 different plugins to work together in a button group?