dynamic enabling and disabling of cells based on the value i

We need to implement the validations (both client and server side) which includes dynamic enabling and disabling of cells based on the value in the other cell. But we don�t know how to implement validations in the DHTML grid. It would be of great help, if you can provide some guidance on the same.

on client side you can use onCellChanged event to implement such functionality
something similar to next

    grid.attachEvent(“onCellChanged”,function(rid,cind,value){
             if (rid==some || cind==some || value=some)
                   grid.cells(rid,cind).setDisabled(true);
             return true;
    });



basically this event fire for any data change, and based on row Id, cell index and new value you can update grid in desired way ( setDisabled switch any cellto readonly mode )