I've recently updated my ASP.NET project to .NET 4.5 (from 3.5) . This led to ClientSideEvents
not firing properly on my Infragistics UltraWebGrid
.
The problem is that in my .aspx file I have configured a client side event on the UltraWebGrid
like this:
<ClientSideEvents ClickCellButtonHandler="webGridSoftwareConfigurations_CellClickHandler" />
And in a js-file I have the following:
function webGridSoftwareConfigurations_CellClickHandler(gridName, cellId) {
// Do some stuff
}
Previously, when I clicked in a cell, the javascript function was triggered. But now after the update to .NET 4.5, nothing happens. I'm using Infragistics2, Infragistics.Web.dll with version 11.1.20111.2112