In WebTextEditor, it is possible to hide certain toolbars onload and show them at
runtime using the context menu. Simply set the Visible property of the toolbar that
you want to hide in InitializeToolBar server side event.
In this topic, you will learn how to show Toolbar at runtime.
To show Toolbar at runtime
- Right-click on WebTextEditor control and choose Properties.
- Set EnableContextMenu to True.
- Expand ToolBarSettings and set ToolBarMode to
Complete.
- Hide standard toolbar using InitializeToolBar server-side event.
protected void WebTextEditor1_InitializeToolBar(object sender, WebTextEditorToolBarArgs e)
{
WebTextEditorToolBarCollection toolbars = e.ToolBar as WebTextEditorToolBarCollection;
WebTextEditorToolBar tb = toolbars.GetNamedItem(WebTextEditor1.ID + "_tbStandard");
if (tb != null)
tb.Visible = false;
}
|
- Run the project. In this case, only Formatting toolbar is shown on load. Note that
the commands included in Standard toolbar are not initially shown on load. Try to
right click on header area and choose Standard options in context menu to show the
Standard toolbar.