Multi FilterColumn

Multi FilterColumn

spyboyzspyboyz Posts: 11Questions: 0Answers: 0
edited October 2011 in Plug-ins
Hello,

Is there any way to put multiselection list for a filter?
with {select} we can put a single list, but I would like to check 2 or 3 parameters in the same column filter

[code]
$("#mytableau").dataTable().columnFilter({
aoColumns: [
{ type: "select"},
{ type: "text",bRegex:true },
{ type: "select"}, //
{ type: "text",bRegex:true },
{ type: "text",bRegex:true }
]
});
[/code]

Help,

Replies

  • spyboyzspyboyz Posts: 11Questions: 0Answers: 0
    Well , i found it by myself .... its easy . just have to use the :

    [code]{ type: "checkbox"} [/code] type ..

    now , how can I change the checkbox windows? the windows is a bit too big ...
This discussion has been closed.