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
80
WebHTMLEditor: Hide tabstrip with Javascript
posted

Hello,

I understand that the following is how to hide the tabstrip server side:

WebHtmlEditor1.TabStripDisplay = false;

How about setting the property using client side Javascript?

Parents
  • 49378
    Verified Answer
    posted

    Hi fortierresearchucsedu,

    Thank you for posting in the community.

    In order to hide the html editor's tabstrip on the client, it should be possible to access the respective element and hide it using something similar to:

    iged_getById("WebHtmlEditor1")._elem0.children[0].children[2].style.display = "none"

    Please let me know if this helps.

Reply Children