dhtmlxCombo in dynamically created rows

Hi,

I want to add dhtmlx combo box in a list.

e.g. one row, which is created by java-script and another row will be created by clicking on “Add Row” button. I want to get dhtmlx combo box in each dynamically created row and I don’t want to add dhtmlx combo list which is hidden form for each combo box. I wish to use one combo list for all combo boxes.

Note: I’m working with large amount of data.

Thanks in advance.

Hi,

I wish to use one combo list for all combo boxes.

Combo doesn’t provide such a possibility.

I’m working with large amount of data.

In this case, probably you need to to use dynamic loading when options are loaded only when user types a filtering mask. So, several combos will not cause performance issue.

If you want to load all options at once, you may load them using dhtmlxAjax and add using loadXMLString in a combo when a users tried to open combo:

combo.attachEvent(“onOpen”,loadOptions);

function loadOptions(){
this.loadXMLString(…);
}