iSeller Commerce
iSeller POS Retail
iSeller POS F&B
iSeller POS Express
Crosslight
WebUI
ClientUI
What's New
Download Trial
Web Solution
Mobile Solution
Enterprise Solution
Custom Development
Blog
Community
Latest Development Blogs
ForumPostTopic
Browse By Tag
Hello,
I'm wondering if it's possible to completely remove all the footer / status bar of the webtexteditor.
I tried the following method:
protected void textEditor_InitializeToolbar(object sender, WebTextEditorToolBarArgs e) { List<WebTextEditorToolBar> toolbars = new List<WebTextEditorToolBar>(); toolbars.Add(e.GetToolBarByCategory(WebTextEditorToolBarCategory.FloatingBottom)); toolbars.Add(e.GetToolBarByCategory(WebTextEditorToolBarCategory.Custom)); toolbars.Add(e.GetToolBarByCategory(WebTextEditorToolBarCategory.FloatingTop)); toolbars.Add(e.GetToolBarByCategory(WebTextEditorToolBarCategory.Formatting)); toolbars.Add(e.GetToolBarByCategory(WebTextEditorToolBarCategory.HTML)); toolbars.Add(e.GetToolBarByCategory(WebTextEditorToolBarCategory.Preview)); toolbars.Add(e.GetToolBarByCategory(WebTextEditorToolBarCategory.Standard)); foreach (var bar in toolbars) { if (bar!=null) { textEditor.ToolBar.Remove(bar); } } }
in order to remove all toolbars, but the footer remain visible.
Nicolas
Hello Nicolas,
To hide the footer and indicator, you can set FooterFrameStyle and ViewIndicatorStyle CustomRules properties as display:none. However, if you would like to hide them via button click in clientside, you will need to obtain the element and set style display:none.
Regards,Handy
or
Choose this if you're already a member of Intersoft Community Forum. You can link your OpenID account to your existing Intersoft Social ID.
Choose this if you don't have an Intersoft account yet. Your authenticated OpenID will be automatically linked to your new Intersoft account.
Enter your Wordpress Blogname