Hello everyone
Currently we are bug testing our system and this was one item that came up. On the Mac, it seems that CKEditor is currently coming up without a toolbar.
This was verified across 2 different macs using both firefox 3 and safari.
It's a very stripped down editor:
if($('personalStatement'))
{
CKEDITOR.replace( 'personalStatement',
{
resize_enabled : false,
width : 600,
height : 300,
toolbar :
[
[ 'Bold', 'Italic','Underline', '-', 'NumberedList', 'BulletedList', '-', 'Link', 'Unlink' ]
]
});
}
Any ideas?
Thanks
Marc
Try specifying the toolbar like this
CKEDITOR.replace( 'personalStatement',
{
'resize_enabled' : false,
'width' : 600,
'height' : 300,
'toolbar' : [
{ name: 'g1', items: ['Bold', 'Italic','Underline'] }
{ name: 'g2', items: ['NumberedList', 'BulletedList'] }
{ name: 'g3': items: ['Link', 'Unlink' ] }
]
I know there are a couple ways to denote the toolbar specification, but that's the method we are using and it works fine. Also try adding 'customerConfig': ''; All of the property names need to be quoted; Without the quotes they are all being handled as undefined variables.