Hide data until filtered
Hide data until filtered
I'm not sure if this is possible, so I thought I'd check here.
By default, I would like to show ONLY the filter input field, and hide all existing data until someone enters data into the filter field.
Is this possible? And if so, could you point me in the right direction on how to accomplish this?
Thanks very much :)
By default, I would like to show ONLY the filter input field, and hide all existing data until someone enters data into the filter field.
Is this possible? And if so, could you point me in the right direction on how to accomplish this?
Thanks very much :)
This discussion has been closed.
Replies
What you could do is put an event listener on the filtering input (keyup for example) which will check that value of the text box, and then decide if the table should be shown or hidden. A simple settings of the CSS display attribute would do - although might be quite brutal on the display :-)
Allan