hi
i have a combo in a cell of one grid and want to use the same combo as a custom combo in a cell in another grid. is there a way to copy the combo and then use it as a custom combo in the other grid celll
i tried it as follows:
var existingCombo= grid.getCombo(1);
var newCombo = newgrid.getCustomCombo(id,1);
newCombo = existingCombo
but this doesnt work, is there a way to do this?
thanks
There is no way to share the same combo between different grid’s
Technically the next code may work, but it may have unpredictable side effects
var existingCombo= grid.getCombo(1);
newgrid.cells(id,1).cell._combo = existingCombo;
ok thanks, ill just create the same combo twice then