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
            });      
        });