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 }); });
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.
Thank you
Hey again,
The issue has been resolved and the fix would be present in the first service release for 2013.
Thanks you for your patience!
Hi there Lewis,
I looked at this issue. It's rather strange because Internet Explorer in IE7 Document Mode ignores the display: none property in CSS. I will research this further and I will get back to you with more information.
Thank you for using the Infragistics Forums!
I have found a workaround, since this appears to only happen in compatibility mode. If you set the META tag in the header to force the browser to use IE9 standards mode the toolbar will not be displayed. I think this will be acceptable for us unless we run into other issues.
<meta http-equiv="X-UA-Compatible" content="IE=9">