Start Building Professional
Web Apps Today


 
Categories Question details Back To List
Question  posted by oVox on Jan 22, 2008 10:59
open dhtmlx forum
Grid Filter Selection

HI!, When i double click to select all-range in a filter Input, doesn't work, so if i have to change the filter value i have to backspace, one by one and filter works every backspace, how can i activate the double click selection so i can erase all content?

Regards,
Answer posted by Support on Jan 23, 2008 03:04
Problem for filters in FF confirmed - to fix it just add next css rule

div.gridbox table.hdr .filter{
    -moz-user-select:text;
}


In case of IE, built in filters ( #text_filter, #select_filter ) must allow selection without any modifications.
Answer posted by oVox on Feb 06, 2008 07:45
Can you Post an example about how to set up Built-In filters (Select & Input) for IE? Thanks,
Answer posted by Support on Feb 06, 2008 09:54
While setting header or footer labels just use
    #text_filter - to create text filter
    #select_filter to create select filtere

grid.setHeader("A,B,#search_filter,D");
grid.attachHeader("A2,#text_filter,C2,D2");