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://es.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://es.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,
Sure.
Infragistics code uses the .NET browser identification to identify IE within their code. As Microsoft has changed their User Agent in IE 11 so it doesn't include MSIE string anymore, Infragistics code doesn't identify IE 11 as an IE browser.
The browser file is kind of a mapping configuration that allows changing the browser identification within ASP.NET. My proposed solution identifies the Trident string and version 11 in the user agent string and sets the browser value to IE.
You can read more at: http://msdn.microsoft.com/en-us/library/ms228122(v=vs.85).aspx
Glad it helped you...
This explanation is perfect!
Thank You!