Start Building Professional
Web Apps Today


 
Categories Question details Back To List
Question  posted by awkash on Jan 14, 2008 04:48
open dhtmlx forum
how to fill in custom combo

This is in line with the question asked earlier

you recomended me to use getcustomcombo

I am using dhtml 1.4 can you suggest from where i can get the latest build

Thanks and regards

Awkash
Answer posted by Support on Jan 14, 2008 05:29
Just add next code to you app page ( or directly to the end of dhtmlxgrid.js file )

dhtmlXGridObject.prototype.getCustomCombo=function(id,ind){
    var cell= this.cells(id,ind).cell;
    if (!cell._combo)
        cell._combo = new dhtmlXGridComboObject();
    return cell._combo;
}