I have combo column inside grid. Some of the combo data need to be loaded according to the other column data changes. So I load the combo data inside onEditCell event. My grid is configured to be able to edit on one click.
But this combo dropdown didn’t open when I click one time. I need to click two time to open the dropdown. Any help on this issue?
combo.load(“RTHandler.ashx/?type=skill&loc=” + mygrid.cells(id, index - 2).getValue(),function(){
return true //use a callback of a loading to make sure that the data is loaded
});
}
}[/code]