-
Notifications
You must be signed in to change notification settings - Fork 283
Open
Labels
enhancementNew feature or requestNew feature or request
Description
How to search while the columns is hidden.
eg I have a 'city' [7] column and I'm hide it.
examples code:
new simpleDatatables.DataTable('#house', {
columns: [
{
searchable: true,
select: [0, 6, 7],
hidden: true,
render: (data, cell, row) => {
row.dataset.name = data // Will add data to row instead.
return data // Will not be shown as column is hidden.
}
}
]
})
because the results is there when I'm not hiding the city column, but blank result when I hide the column.
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request