﻿<?xml version="1.0" encoding="utf-8"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:media="http://search.yahoo.com/mrss/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0"><channel><title>Intersoft Community - WebTextEditor - WebTextEditor - Remove footer / status bar?</title><link>http://www.intersoftsolutions.com/Community/WebTextEditor/WebTextEditor---Remove-footer--status-bar/</link><description /><generator>http://www.intersoftsolutions.com</generator><language>en</language><copyright>Copyright 2002 - 2015 Intersoft Solutions Corp. All rights reserved.</copyright><ttl>60</ttl><item><title>WebTextEditor - Remove footer / status bar?</title><link>http://www.intersoftsolutions.com/Community/WebTextEditor/WebTextEditor---Remove-footer--status-bar/</link><pubDate>Tue, 25 Jan 2011 22:50:54 GMT</pubDate><dc:creator>handy@intersoftpt.com</dc:creator><category>WebTextEditor footer status bar</category><description>&lt;p&gt;Hello Nicolas,&lt;/p&gt;&lt;p&gt;To hide the footer and indicator, you can set &lt;b&gt;&lt;i&gt;FooterFrameStyle &lt;/i&gt;&lt;/b&gt;and &lt;i style="font-weight: bold; "&gt;ViewIndicatorStyle CustomRules &lt;/i&gt;properties as &lt;b&gt;&lt;i&gt;display:none&lt;/i&gt;&lt;/b&gt;. &lt;br /&gt;However, if you would like to hide them via button click in clientside, you will need to obtain the element and set style &lt;b&gt;&lt;i&gt;display:none&lt;/i&gt;&lt;/b&gt;.&lt;/p&gt;
&lt;p&gt;Regards,&lt;br /&gt;Handy&lt;/p&gt;</description></item><item><title>WebTextEditor - Remove footer / status bar?</title><link>http://www.intersoftsolutions.com/Community/WebTextEditor/WebTextEditor---Remove-footer--status-bar/</link><pubDate>Mon, 24 Jan 2011 05:19:55 GMT</pubDate><dc:creator>supporti-track.pmi@pmintl.com</dc:creator><category>WebTextEditor footer status bar</category><description>&lt;p&gt;Hello,&lt;/p&gt;
&lt;p&gt;I'm wondering if it's possible to completely remove all the footer / status bar of the webtexteditor.&lt;/p&gt;
&lt;p&gt;I tried the following method:&lt;/p&gt;&lt;pre&gt;protected void textEditor_InitializeToolbar(object sender, WebTextEditorToolBarArgs e)
        {
            List&amp;lt;WebTextEditorToolBar&amp;gt; toolbars = new List&amp;lt;WebTextEditorToolBar&amp;gt;();

            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);
                }
            }
        }&lt;/pre&gt;
&lt;p&gt;in order to remove all toolbars, but the footer remain visible.&lt;/p&gt;
&lt;p&gt;Nicolas&lt;/p&gt;</description></item></channel></rss>