Combo together with filter still does not work

After several attempts to get a solution I ask you to get me a working example which uses the following scheme:

[code]

Test
[/code]

It should have the following combo xml

[code]<?xml version="1.0" encoding="UTF-8"?>

A-Town B-Stadt Dorf [/code]

and the following grid data:

<?xml version="1.0" encoding="UTF-8"?> <rows> <row id="1"> <cell>A-Town</cell> </row> <row id="2"> <cell>A-Town</cell> </row> <row id="3"> <cell>B-Stadt</cell> </row> <row id="4"> <cell>Dorf</cell> </row> <row id="5"> <cell>A-Town</cell> </row> </rows>

From your example and documentation I can’t understand what to do.

Please help.

Karl

Please, try fill the combo with the options before the init of your grid:

var locationCombo = psmcGrid.getColumnCombo(0); locationCombo.loadXML("testcombo.xml"); psmcGrid.init();