co/coro/combo in grid

I know you’ve cleared this up a million times, but most of the example pages come up blank!

As you see from the code below, I have a grid that is filled but by a connector. The underlying table has two colums, the first has to be picked from values of another table and the second is a simple text.

I’ve understood that I cant use “loadXML” with co/coro, but when I put a “combo” in the colTypes I get an “Invalid column type” error!!!

Also I would like to put a coro or whatever in the header to filter the rows for this column

listeModGrid = listeModLayout.cells("a").attachGrid();
listeModGrid.setImagePath(imgPath);
listeModGrid.setHeader("Tipo Lista,Nome Lista");
listeModGrid.attachHeader("#connector_select_filter,#connector_text_filter");
listeModGrid.setInitWidths("180,*");
listeModGrid.setColTypes("combo,edtxt");
listeModGrid.setColSorting("connector,connector");
listeModGrid.enableSmartRendering(true);
listeModGrid.enableMultiselect(true);
listeModGrid.init();

var combo = listeModGrid.getColumnCombo(0);
combo.loadXML("cnctTipiListaList.do");

   listeModGrid.loadXML("cnctListeGrid.do");
var dp = new dataProcessor("cnctListeGrid.do");
dp.init(listeModGrid);

Sorry, I forgot to include the relative .js (in the Pro Version)… However,it still does NOT work: instead of showing the text values from “combo.loadXML(“cnctTipiListaList.do”)”, it shows me the numeric keys from the main table!

Please, provide your generated combo list xml, and the grid’s xml.

The XML comes from connectors…

However, calling the connectors via browser, give the following outputs I have attached
xml outputs.rar (1.58 KB)

In your generated grid’s xml you have an additional space (" ") before and after the dash:

<![CDATA[ - ]]>

Please, try to remove the additional spaces in your values.

I can’t!

As I wrote to you, these xml outputs come from the dhtmlx connectors!

Unfortunately the value in the grid should be similar to the option value.
Your issue cannot be reconstructed locally.
Please, check your connector’s settings.
If issue still occurs - please, provide your sample of your code with the connectors configuration.