Categories | Question details Back To List | ||
Update grid row Hi Team, How to update tree row either entire row or column of row? Thanks, -Agile Answer posted by Support on Nov 18, 2008 01:55 You can access and change value of any cell by grid.cells(i,j).setValue(new_one); for "tree" element it can be done ase grid.cells(i,j).setLabel(new_one); //set text part of cell grid.cells(i,j).setImage(new_one);//set image part of cell |