Individual column filter

Individual column filter

dasapadasapa Posts: 17Questions: 3Answers: 0
edited November 2013 in General
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.

Replies

  • tangerinetangerine Posts: 3,365Questions: 39Answers: 395
    I think it's like this:

    aoColumns: [
    { type: null},
    { type: "text"},
    { type: "text"},
    { type: "text"}
    ]
  • dasapadasapa Posts: 17Questions: 3Answers: 0
    Hi,

    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....
  • allanallan Posts: 63,498Questions: 1Answers: 10,471 Site admin
    The columnFilter add-on is third party software and not supported as part of the DataTables core project. You might be best to open an issue in that project's issue tracker.

    Allan
This discussion has been closed.