I may have huge combo box data, What I
am doing is, when user clicks on that cell, it fires an AJAX call to populate
dropdown, but it looks like when I do this
var
combobox = mygrid.getCombo(cellInd);
for
( var i = 1; i < arrTM.length(data returned from AJAX) ; i++)
{
combobox.put(arrTM[i],arrTM[i])
}
It populates the combo for whole column that makes my effort (populate on
demand) worthless. Am I true?<o:p></o:p>