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
265
Hiding a toolbar in IE
posted

Hello,

I am  not able to hide a default toolbar in IE.  The code below works fine in Firefox and in Opera.  I can also hide and show the toolbar in the sample for configuring the toolbars, so I think I am just missing something simple.  Any ideas?  Thanks in advance,

Jennifer

Loader:

 $.ig.loader({
                scriptPath: '@(Url.Content("~/Scripts"))',
                cssPath: '@(Url.Content("~/Content"))',
                resources: 'igHtmlEditor'
            });
View:

@(Html.Infragistics().HtmlEditorFor(model => model.SpaGettingToFrom).ShowInsertObjectToolbar(false).Render())

I have also tried hiding it this way:

 $.ig.loader(function () {
           
             $("#SpaGettingToFrom").igHtmlEditor({
                showInsertObjectToolbar: false
            });      
        });

Parents
No Data
Reply
  • 8736
    posted

    Hello,

    I was able to see the behavior you described in IE 9 compatibility view mode. I have logged this behavior with development with issue id#127061. I have created a private support case CAS-104403-B7B6D0 to provide you more details on this.

    I hope this helps.

Children