Hi, I have a jqxdatatable and I’d like to have a column of jqxcomboboxes in it.
I can’t find an example of this, and can’t get it to work.
I’ve been trying:
cellsRenderer: function (row, column, value, defaulthtml, columnproperties) {
var hhtml = '<div id="Status_Dropper_' + row + '" class="Status_Dropper" >' + row + '</div>';
return hhtml;
}
and then trying to point the combobox at the divs using their class.
$(".Status_Dropper").jqxComboBox({
however, it seems the div has not been created when combobox looks for it.
what is the correct way to do this ?
thanks