How to run dataTable like a pure (usual) searchengin?
How to run dataTable like a pure (usual) searchengin?
booraq
Posts: 1Questions: 0Answers: 0
Hi all ;-)
well, I ask the question in an ather way....how can I desable displaying results when we start the app/. that's all
thank you.
This discussion has been closed.
Replies
So basically you want a search box and when you start tying it shows the DataTable? I'd suggest having your own search input element that you bind a
keyup
(etc) listener to. If it is empty then have it hide the DataTable. If it is not empty have it show the DataTable ($(...).css('display', 'block')
for your container element).Allan