Hi,
I have a column on the grid which is a combo box type and i would like to change the values of the cells in a row based on the selected combobox value. How can i do that??
You can use onEditCell event ( it will work for any column type )
grid.attachEvent(“onEditCell”, function(stage,id,ind,value){
if (stage == 2 && ind == INDEX ){
//any code here
// id - id of row
// value - new value of cell
}
return true;
});
where INDEX - index of column in which combo placed in your case