Categories | Question details Back To List | ||
eXcell onchange When creating a dhtnkXgrid via XML how do I assign the onChange call back function for columns that are combobox (co)? Answer posted by Alex (support) on Mar 27, 2009 07:39 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 }) |