3

My XML is as shown below. Everything except the toogle editor button becomes hidden from the editor. Is there any other code to fix the problem.

<field name="description"
    type="editor"
    cols="20"
    label="COM_TEST_DESCRIPTION_LBL"
    description="COM_TEST_DESCRIPTION_DESC"
    class="inputbox"
    filter="JComponentHelper::filterText"
    buttons="true"
    hide="readmore,pagebreak,image,article,toogle editor"
/>
Lodder
  • 19,758
  • 10
  • 59
  • 100
Mohammed Nagoor
  • 884
  • 2
  • 12
  • 25

1 Answers1

1

The simplest way would be to use CSS styling to disable the visibility of this button:

.toggle-editor {
    display: none;
}
3rdLion
  • 159
  • 2
  • In the editor, readmore,pagebreak,image,article are used as editors-xtn plugins , so they can hide. But the toogle editor is not used as plugin, so there is no option to edit. – Mohammed Nagoor Nov 16 '12 at 05:28