Show a grid in two cells

Hi,

is it possible to show a grid in two layout cells at the same time and refresh both layout cells after editing a grid cell?

Thanks
Dan

Unfortunately it’s not available to show a single grid in two cells of a layout at the same time.

You may only create two similar grid objects in each layout cell.

Thanks for the quick reply. Is it then possible to dynamicaly load cell values into another grid?

You my try to use the onEditCell event to control the changes made in the grid by a user and recreate the same changes in a second grid.
Something like this:

grid1.attachEvent("onEditCell", function(stage,rId,cInd,nValue,oValue){ if (stage=="2"){ //the edit operation is finished grid2.cellById(rId,cInd).setValue(nValue) } return true; });