I have a combo filter for a grid. When I filter the grid with the one of the values in the combo rest of the values disappears in the combo after the filtering. You can reproduce it at the following dhtmlx sample link.
How can I obtain a combo filter element and populate it with default values?
For example:
var combo = grid.getCombo(6)
combo.addOption (“AAA”,“1”);
combo.addOption (“BBB”,“2”);
combo.addOption (“CCC”,“3”);
combo.addOption (“DDD”,“4”);
…
…
…