Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
100
To hide or disable "HTML" Tab in WebHtmlEditor
posted

By default, both tab that is Design/Html are enable. I would like to know how to hide the HTML tab in WebHtmlEditor (either through code) or by properties?

Parents
  • 7694
    posted

     

    Hello,

    You must set TabStripDisplay = false on Page_Load

      protected void Page_Load(object sender, EventArgs e)

        {

            this.WebHtmlEditor1.TabStripDisplay = false;

        }

    Best Regards,
    Ivan Baev
    The Infragistics  ASP.NET Team

Reply Children
No Data