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
325
UltraWebGrid - InitializeRowHandler
posted

Hi there!

Somehow the InitializeRowHandler is never invoked. Is there a known bug or any workaround to solve that issue?

Code

<ClientSideEvents InitializeRowHandler="fnInitializeRow" />

function fnInitializeRow(gridName, rowId) {

alert('fnInitializeRow called.');
var row = igtbl_getRowById(rowId);
var posId = row.getCellFromKey('PositionID').getValue();
alert('fnInitializeRow::posId = ' + posId);
UpdateCalculatedGridValues(row.Id, posId);

}

Kind regs,
Dan