accessing filter combo box in header

I have the most recent build of dhtmlxGrid and I am trying to use the mygrid.getCombo(col_ind) function to get access to a combo filter in the header of my grid. Is this possible?



Thanks!

getCombo returns a combo object for data part of grid, if you need to access element, which was created through filtering shortcuts, you can use
grid.getFilterElement(index);
index - index of related columns

Method will return input object for the text and select filters, and combo object for the combo filter.

Awesome! Woks great! Thank you!