With IE 11 the double-click event of the UltraWebGrid does not fire.
With previous versions of Internet Explorer when the user double-click a row, it does a postback to server witch handles the event.
Can anybody help?
Hello Icarneiro,
Please note that UltraWebGrid is not supported under IE11 and is now outdated. As of Volume 11.1 of NetAdvantage, the classic ASP.NET toolset has been retired. A detailed list of the retired controls and their respective AIKIDO replacmenets may be found at:
http://ko.infragistics.com/community/blogs/taz_abdeali/archive/2011/11/17/asp-net-product-changes-in-2011-volume-2.aspx
I would suggest that you consider switching to the WebDataGrid/WebHieararchicalDataGrid in this scenario. More information regarding these controls is available at:
http://help.infragistics.com/doc/ASPNET/2013.2/CLR4.0/?page=Web_WebDataGrid_WebDataGrid.html
A list of the supported environments for the classic toolset may be found at:
http://ko.infragistics.com/help/supported-environments/
Please do not hesitate to contact me if you have any questions.
Hi,
I guess you'll get quite a lot of these requests as Microsoft upgrades to IE 11 all of our clients...
Switching a complete application that uses your classic ASP.NET controls set to the new controls set is a huge project which I'm not sure all of your customers can afford.
Considering your support of version 2011.1 (including UltraWebGrid) is valid through May 2014, I believe it is reasonable to expect a fix for the classic controls that are in use currently.
Thanks,
Almog
Hello Almog,
Please do not hesitate to contact me if you have any further questions regarding this matter.
Is there a way to force compatibility from the server for IE11?
The two issues I have found that makes Infragistics code (2011.1) fail under IE11:
1. the change of User Agent string being sent by the browser is not identified as up-level browser (Mozilla instead of IE) and therefore the controls are being rendered accordingly.2. scripts being used by their controls are using script syntax that is no longer supported by IE11.
To solve these two issues I have done the following:
1. Add a .browser file to the App_Browsers which overrides identification of IE11 browser in ASP.NET and forces .NET to identify it as IE (and not as Mozilla). See attached.2. Set the meta element: "X-UA-Compatible": <meta http-equiv="X-UA-Compatible" content="IE=10" />
The above solution made my application work with IE11, at least, until next time.
Your solution works!
Can you please explain what does it do?
Regards,
I am also facing same issue with ultrwebgrid dbclick event is not firing under IE11.
After adding a meta tag: <meta http-equiv="X-UA-Compatible" content="IE=9" /> at page level then dblClick event works, but the page layout is disturbed and some controls are over lapping. Mainly the bottom portion of the page layout is behaving unexpectedly.
Is there any to resolve this? Do we need to add any document type related to meta Tag?
Sreeni