Hello,
I have added following toolbar in config.js for inline editing in div with attribute contenteditable="true", but icons for 'Source' is not shown in editor's toolbar in the browser.
config.toolbar = 'myToolbar';
config.toolbar_myToolbar =
[
{ name: 'styles', items: ['Font', 'FontSize'] },
{ name: 'colors', items: ['TextColor', 'BGColor'] },
{ name: 'styles', items: Format? },
{ name: 'document', items: Source? },
{ name: 'editing', items: ['Find', 'SpellChecker'] },
'/',
{ name: 'basicstyles', items: ['Bold', 'Italic', 'Underline', 'Strike'] },
{ name: 'paragraph', items: ['JustifyLeft', 'JustifyCenter', 'JustifyRight', 'JustifyBlock'] },
{ name: 'paragraph', items: ['NumberedList', 'BulletedList'] },
{ name: 'paragraph', items: ['Outdent', 'Indent'] },
{ name: 'links', items: ['Link', 'PasteFromWord', 'Blockquote'] }
];
Is Source icon is valid for inline editing or I need to do some other stuffs?