Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
25
UltraWebGrid BeforeCellUpdateHandler ActiveRow is not working on IE10
posted

Dear Friends,

I am using UltraWebGrid and on click of checkbox on JavaScript side I am exposing BeforeCellUpdateHandler  event where I get selected Rows value.

I am using IE10 and when I set IE10 view mode to Compatibility View its working fine but without compatibility mode ActiveRow value become empty.

javascript Code Snippet 

function infraGridReport_BeforeCellUpdateHandler(gridName, cellId, value)

{

var myGrid = igtbl_getGridById(gridName);

var RowId = myGrid.ActiveRow;
var Row = myGrid.Rows.getRowById(RowId);

var iLink = Row.getCellFromKey("Hidden File Path").getValue();
var iFileName = Row.getCellFromKey("Hidden File Name").getValue();

}

Kindly please help me resolve this.

Regards

Vikrant