Still trying to figure out how to add an editable multi-select combo to a grid.
Is it possible to add data to a combo in a grid without external xml?
This works for regular combo but not for combo in a grid:
subgrid.setColTypes(“combo”);
for (var i = 0; i < ar.length; i++) {
grid.getCombo(0).put(ar[i], ar[i]);
}
addOption doesn’t work. It seems to be working only for combo that is not part of a grid OR for cellCombo but not for column combo. Even if the tutorial you sent, it shows that only loadXML is possible…