Are the WebDataGrid 13.1 compatible with IE11? I have an existing application that doesn't appear to work right when I hit it via IE11. The !DOCTYPE is html. I can find no mention of IE11 compatibility for any IG controls.
Thanks
Hello BobKrug,
IE11 is supported from 13.1 with the upcoming service release and later volumes. If you find something is not working in IE 11 in 13.1 you can report to us, our development team will look into it.
Please let me know if you have any further questions regarding this matter.
I am using WebDataGrid2013 volume 1 with IE 11. It does not support with rowselectionchanged event.
How can I fix it?
This is detective with last 4 digit version.
<%@ Register assembly="Infragistics4.Web.v13.1, Version=13.1.20131.1012, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb" namespace="Infragistics.Web.UI.LayoutControls" tagprefix="ig" %>
Hello Deronvilp,
It appears you are not using the latest service release. I suggest you to install latest service release.
To download the current service release for NetAdvantage for .NET from our website, please follow these instructions:
1) Navigate to the "My Keys and Downloads" page on our website. You may be asked to log in using your Infragistics member profile's user name and password. You can reach the My Keys and Downloads page via the following link:https://ko.infragistics.com/my-account/keys-and-downloads/
2) Click on the "NetAdvantage" tab. This will show all of your registered license keys for NetAdvantage.
3) Click on the license key for the product and version for which you would like to download a service release. This will bring up all available public downloads for this product and version.
4) In the "Service Releases" section, click on the link for the appropriate version of NetAdvantage. Note that there is a service release for each CLR version and in some cases a separate hot fix for an ASP.NET-only, Windows-Forms-only, WPF-only, or full installation.
If your license key is not listed on the My Keys and Downloads page in step 2, then your key has not been registered to your member profile. To register your license key, please go to the Product Registration page, via the following link:<http://devcenter.infragistics.com/Protected/ProductRegistration.Aspx>
Once your license key is registered, it should appear in the My Keys and Downloads page, thus allowing you to download service releases for that version of NetAdvantage.
If you are unable to register your license key for some reason, such as that it is already registered to another user, please contact our Registrations department at the following email address: registrations@infragistics.com
ASP.Net Advantage 2013 vol 1 supports Visual Studio 2010 or not?
I am using Visual Studio 2010.
Can you please tell me which service release should I download? Please give the name.
If you would like the service release for asp.net, you can download this one "NetAdvantage for ASP.NET 2013 Vol. 1 - Service Release "
As I tested, I found that RowSelectionChanged Event works fine on Firefox,Google Chrome,Safari, but not working on Internet Explorer 11.
It does not work with NetAdvantage 2013 vol1 service release on IE 11. Or I need update my code.
I use this code below.
protected void WebDataGrid1_RowSelectionChanged(object sender, SelectedRowEventArgs e)
{
if (WebDataGrid1.Behaviors.Selection.SelectedRows.Count > 0)
foreach (GridRecord selectedRow in WebDataGrid1.Behaviors.Selection.SelectedRows) // errors out here with selectedRow returning null
lblHospAcct.Text = GetRecordValue(selectedRow, "HospAcct").ToString();
}
private object GetRecordValue(GridRecord rec, string columnName)
int columnIndex = WebDataGrid1.Columns[columnName].Index;
return rec.Items.GetValue(columnIndex);