Categories | Question details Back To List | ||
grid have a grid which have 3 column and infinite rows so i want when the row is created the IInd Col value is add in the first and show in the IIIrd and in the IInd row Ist Col have the same value as Ist Row IIIrd col and so on in the next row also
http://dhtmlx.com/docs/products/kb/imgs/_icon_for_answers.gif" border=0>
Answers Answer posted by Support on Dec 05, 2008 05:19 >>so i want when the row is created the IInd Col value is add in the first and show in the IIIrd mygrid.attachEvent("onRowCreated",function(id){ mygrid.cells(id,2).setValue(mygrid.cells(id,0).getValue()+mygrid.cells(id,1).getValue()); }); |