Thanks for the info, however I should have been more specific.
without your code, when the toolbar shows, there is an option to click a button and hide the toolbar, leaving the same button available if you want to show the toolbar again.
Your option does hide the toolbar, but there is no button option to show the toolbar again.
Any thoughts on how to hide the toolbar and leave that button available to show it again if necessary?
Some thoughts behind my request -- the space where the textarea is in my page is rather small, and even when I use a custom toolbar to reduce the menu items, it still takes up half of the area in the space of the textarea, when expanded. I would like to load the page with the toolbar compressed, and still leave the option to expand, if needeed.
Thanks!
garry.yao wrote:Hi, you may consider this way:
CKEDITOR.replace( 'editor1',
{
on :
{
instanceReady : function ( evt )
{
// Hide the editor top bar.
document.getElementById( 'cke_top_' + evt.editor.name ).style.display = 'none';
}
}
} );
Re: Hide Toolbars on load?
Re: Hide Toolbars on load?
Thanks for the info, however I should have been more specific.
without your code, when the toolbar shows, there is an option to click a button and hide the toolbar, leaving the same button available if you want to show the toolbar again.
Your option does hide the toolbar, but there is no button option to show the toolbar again.
Any thoughts on how to hide the toolbar and leave that button available to show it again if necessary?
Some thoughts behind my request -- the space where the textarea is in my page is rather small, and even when I use a custom toolbar to reduce the menu items, it still takes up half of the area in the space of the textarea, when expanded. I would like to load the page with the toolbar compressed, and still leave the option to expand, if needeed.
Thanks!
Re: Hide Toolbars on load?
Re: Hide Toolbars on load?
Re: Hide Toolbars on load?