Hello,
(professional version 3.5)
I’m using a header with filters
psmcGrid.attachHeader("#select_filter,#select_filter,#text_search,#select_filter,#select_filter,#rspan,Plan,Actual,#rspan,A,B,C,Plan,Actual,#rspan,A,B,C,Plan,Actual,#rspan,A,B,C,Plan,Actual,#rspan,A,B,C,Plan,Actual,#rspan,A,B,C");
In the grid I have ColTypes with combo
psmcGrid.setColTypes("ro,ro,ro,combo,combo,dhxCalendar,dhxCalendar,ro,dhxCalendar,ro,ro,ro,dhxCalendar,ro,dhxCalendar,ro,ro,ro,dhxCalendar,ro,dhxCalendar,ro,ro,ro,dhxCalendar,ro,dhxCalendar,ro,ro,ro,dhxCalendar,ro,dhxCalendar,ro,ro,ro");
The combos are loaded with
var locationCombo = psmcGrid.getColumnCombo(3);
locationCombo.loadXML("psmc_mmt/psmc_locationlist.php");
var aqeCombo = psmcGrid.getColumnCombo(4);
aqeCombo.loadXML("user_admin/psmc_compuserlist.php");
When the user applies the filter the result is an empty grid for the filter in column 3 and 4. If I remove the combo and replace it by “ro” the result is normal.
Can you help?
Karl