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
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);
Hello Deronvilp,
If you would like the service release for asp.net, you can download this one "NetAdvantage for ASP.NET 2013 Vol. 1 - Service Release "
Can you please tell me which service release should I download? Please give the name.
ASP.Net Advantage 2013 vol 1 supports Visual Studio 2010 or not?
I am using Visual Studio 2010.