Categories | Question details Back To List | ||
getValue - all values grid Hi, function onKeyPressed(code,ctrl,shift){ if(code==86&&ctrl){ The procedure is to rescue all the values of the cells and to compare when paste them
Thanks! Answer posted on Oct 09, 2007 13:02 >>alert(mygrid.cells(x,y).getValue()); The syntax of cells command is cells(rowId, cellIndex) - it mixed up in your case The correct code will be alert(mygrid.cells2(y,x).getValue()); I used cells2 because it works with row indexes and more appropriate in your case |