Categories | Question details Back To List | ||
hi,i am using dhtmlXCombo in grid header for filtering (#combo_filter), i don't want to use #select_filter_strict ... hi, i am using dhtmlXCombo in grid header for filtering (#combo_filter), i don't want to use #select_filter_strict , but i want the same functionality. is it possible with dhtmlXCombo.?? i don't want to use #select_filter_strict because i don't have any stylesheet for look and feel for filter made by #select_filter_strict . As i am using "<link rel="stylesheet" type="text/css" href = " ../dhtmlx/dhtmlxCombo/codebase /dhtmlxcombo.css ">" for combo box. Can i change the color of the filter made by #select_filter_strict?? thanks lalit gera Answer posted by dhxSupport on Jun 24, 2009 03:47 >>is it possible with dhtmlXCombo Unfortunately it's impossible >>Can i change the color of the filter made by #select_filter_strict You can set style for the #select_filter_strict using following code: var filter=mygrid.getFilterElement(COLUMN_INDEX); filter.style.cssText="ANY NECESSARY CSS FOR SELECT ELEMENT"; |