[feature request] hide/show specified row
[feature request] hide/show specified row
I now you can hack the fnFilter to show and hide rows based on something.
What would be nice is to be able to hide and show rows with something like this:
// input: index OR array of indexes, [optional] show / hide to force.
fnToggleRow(1)
fnToggleRow([1,4,6,8,9])
fnToggleRow(1,show)
fnToggleRow(1,hide)
I can actually do this myself by hiding rows using CSS, the problem is that it doesn't work when I for example search the rows, the CSS hidden rows is still hidden, even though they match the search query.
Any thoughts, Allan?
What would be nice is to be able to hide and show rows with something like this:
// input: index OR array of indexes, [optional] show / hide to force.
fnToggleRow(1)
fnToggleRow([1,4,6,8,9])
fnToggleRow(1,show)
fnToggleRow(1,hide)
I can actually do this myself by hiding rows using CSS, the problem is that it doesn't work when I for example search the rows, the CSS hidden rows is still hidden, even though they match the search query.
Any thoughts, Allan?
This discussion has been closed.
Replies
Allan