Individual column filter
Individual column filter
Hi,
i am using individual column filter, its ok and run perfect but i want to delete filter (search box) in the first column. How can i mak it?
[code]
.columnFilter({sPlaceHolder: "head:after",
aoColumns: [
{ type: "text"}, // I want to delete this box
{ type: "text"},
{ type: "text"},
{ type: "text"}
]
});
[/code]
Thanks.
i am using individual column filter, its ok and run perfect but i want to delete filter (search box) in the first column. How can i mak it?
[code]
.columnFilter({sPlaceHolder: "head:after",
aoColumns: [
{ type: "text"}, // I want to delete this box
{ type: "text"},
{ type: "text"},
{ type: "text"}
]
});
[/code]
Thanks.
This discussion has been closed.
Replies
aoColumns: [
{ type: null},
{ type: "text"},
{ type: "text"},
{ type: "text"}
]
this is ok, but i am using "individual column filter" and "show and hide details". I want to delete the first box because it's the column where appears image "details_open.png" or "details_close.png".
If i show "type: null" in the first column box column filter dissapear but the second filter box look for data in the third column. Third filter look for data in fourth column adn show on..
Thanks for your help....
Allan