display label in coro type column using dhtmlXGridFromTable

Dears:

I have a table as following.

[code]









Column 1 Column 2
11 value 12
[/code] I want make it as grid using tmlXGridFromTable ,there is a "coro" type column ,when i using

var mygrid = new dhtmlXGridFromTable(‘tblToGrid’);
mygrid.getCombo(0).put(“11”,“aaaaa”);

the column are display value “11”,but not the “aaaaa”,how can i make that column display the label,but not the value.

You should call getCombo.put method before the data to grid is loaded.
Try this code:

[code]









Column 1 Column 2
11 value 12

[/code]