When creating a dhtnkXgrid via XML how do I assign the onChange call back function for columns that are combobox (co)?
You can attach onEditCell event handler - the common solution for all excells:
grid.attachEvent(“onEditCell”,function(stage,id,index){
if(stage == 2 && index = some_index) doOnChange();
return true
})