Opened 18 years ago
Closed 17 years ago
#930 closed Bug (duplicate)
Need to hide the toolbar.
Reported by: | Ram | Owned by: | |
---|---|---|---|
Priority: | Normal | Milestone: | |
Component: | General | Version: | |
Keywords: | Cc: |
Description
I am trying to hide the toolbar from my textarea,
As my business needs, users entering the data copied from MS Word or from webpages to this textarea.
So i dont need toolbarset, i just wanna hide it.
It seems it doesnt have that fecility, i can collapse and expand the toolbar but still my textarea showing the few borders on top it.
Looking forwaard to hearing from u guys.
Thanks a lot in advance'
Change History (3)
comment:1 Changed 18 years ago by
comment:2 Changed 18 years ago by
Next to this you can also create your own custom toolbarset and switch to that with the API.
docs::Toolbar Configuration : http://wiki.fckeditor.net/Developer%27s_Guide/Configuration/Toolbar
Since FCKeditor 2.3beta it's possible to easily change the toolbar using the JavaScript API by just calling <EditorInstance>.ToolbarSet.Load( '<ToolbarName>' ).
comment:3 Changed 17 years ago by
Resolution: | → duplicate |
---|---|
Status: | new → closed |
dup of #549 (fixed for next version)
This is possible through the API:
Just hiding the toolbar:
editorInstance.EditorWindow.parent.document.getElementById("xExpanded").style.display = "none";
And hiding the small bar showing when the toolbar is collapsed is this:
editorInstance.EditorWindow.parent.document.getElementById("xCollapsed").style.display = "none";
when you want to hide the collapse handle do:
editorInstance.EditorWindow.parent.document.getElementById("xCollapseHandle").style.display = "none";
or hiding the expand handle. This seems to be the same as hiding the object with id 'xCollapsed' mentioned above:
editorInstance.EditorWindow.parent.document.getElementById("xExpandHandle").style.display = "none";
To just collapse the toolbars, like normally done with the small arrow, do:
editorInstance.EditorWindow.parent.FCK.ToolbarSet._ChangeVisibility(true);
expanding it again is
editorInstance.EditorWindow.parent.FCK.ToolbarSet._ChangeVisibility(false);