csvtotable icon indicating copy to clipboard operation
csvtotable copied to clipboard

hide table until making a search

Open Zachary24 opened this issue 5 years ago • 4 comments

I have a table with over 50,000 rows, and growing... Having so much makes the page take an extreme amount of time to load... Is there any way of not showing the table until a search is made, sorta like google/youtube etc. ?

Zachary24 avatar Sep 12 '18 09:09 Zachary24

hi, have you find solution?

Dashu-Xu avatar Sep 30 '18 05:09 Dashu-Xu

Sadly, I haven't, I did go with a different tool instead which converts the CSV into an actual HTML table (instead of an HTML file with the table and other code) and built my own search box, but still I haven't found a way to hide the table until the search is made... I put the project off for a while, as I'm working on something else atm.. But I think instead I might convert the CSV to a PHP database and simply have the search box search from the database.

Zachary24 avatar Sep 30 '18 05:09 Zachary24

i want find a tool which can act as Excel's pivot table on Web page... that's why i notice this project

Dashu-Xu avatar Sep 30 '18 06:09 Dashu-Xu

Currently the app generates single html file which can be served without any other dependencies. If you look at the HTML generated you can see that data also stored as a JSON data. The load time is because of the size browser has to parse to render it (like in your case with 50k + rows). Let me see if I can come up with something to solve this.

vividvilla avatar Oct 01 '18 12:10 vividvilla