Hi,
I want to validate some cells in a ultrawebgrid in the client side, how can I do that?.
I tried the follow code, but it validates all ultrawebgrid's cells
function grdPrincipal_BeforeExitEditModeHandler(gridName, cellId, newValue) {var cell = igtbl_getCellById(cellId);var grid = igtbl_getGridById(gridName);var currentValue = cell.getValue();if (newValue == null || newValue == '') {alert('');EditCell();return 1;}}
Can you help me please.
Thanks
You already have a reference to the cell that was edited, based on the following line:
torresann said:var cell = igtbl_getCellById(cellId);
Thank for your help, but I only know the column's name that I want to validate in ther server side, how can I do to use tag property in the client side?.
thanks
torresann said:Thank for your help, but I only know the column's name that I want to validate in ther server side, how can I do to use tag property in the client side?.