Not blazor specific, but jquery data table has built in export to excel and pdf https://datatables.net/. - Source: Reddit / 18 days ago
Https://datatables.net/ is generating the code. - Source: Reddit / about 2 months ago
After doing the stuff /u/brianjenkins94 said, then for your actual table, https://datatables.net/ is probably the simplest library for making tables with a bunch of filtering/sorting features. - Source: Reddit / 2 months ago
Sorting html tables can easily be done by using datatables. - Source: Reddit / 3 months ago
Before I was used to using https://datatables.net and all this was very easy. It would be nice if in the future some Blazor data grid already implements them by default. - Source: Reddit / 4 months ago
Https://datatables.net/ This is the lesser alternative. Also widely used. - Source: Reddit / 4 months ago
DataTables is a jQuery plugin that enhance HTML tables to support pagination, search and ordering, in addition to easily editable themes and easy internationalisation or multiple language support. It supports multiple ways of fetching data, either from the DOM, JS or, and in this case using server-side processing as it's the most adapted mode for large databases and big projects, and as all the operations are... - Source: dev.to / 5 months ago
I've used this library with great success before. It does everything you want. - Source: Reddit / 5 months ago
Just use Javascript. There are dedicated JS libraries for this exact task like Data Table https://datatables.net/. - Source: Reddit / 5 months ago
I like to use DataTables for this:https://datatables.net/. - Source: Reddit / 5 months ago
Use something like Datatables to create tables. And whatever JS library you want to create charts. - Source: Reddit / 5 months ago
Does anyone know of a Datatables type of plug-in that does not use jQuery? - Source: Reddit / 6 months ago
I'd say most user friendly way would be a custom webpage but probably requires the most work from you. There are libraries to help you depending on your ability. - Source: Reddit / 7 months ago
I am using Datatables and have a button on the page that refreshes the table using AJAX. To be clear the table isn't using an ajax source of data, we are just using ajax to refresh it only when needed. Ajax is refreshing the div which the table is wrapped in. I know I'm losing my pagination buttons and filtering capability because the table needs to be redrawn but I'm not sure how to add this into the table... - Source: Reddit / 7 months ago
Https://datatables.net/ used to be what powered that plugin. - Source: Reddit / 7 months ago
I ran into a similar situation some years ago but in my case mistakes in these files/ETL == money so we couldn’t afford any. We basically built a small web app where users can 1. Select an entire sheet in excel (ctrl a ctrl c style) 2. Click paste in the web app an see the data in excel like layout 3. Click validate where the app will run all business logic checks an return a detailed list of wrong entries or a... - Source: Reddit / 8 months ago
Try https://fastapi.tiangolo.com/ to deliver the data, and https://datatables.net/ If you want to get fancy, add some https://leafletjs.com/. - Source: Reddit / 8 months ago
I have a product card in my Django Application, when clicked, adds to cart. I'm using infinite-scroll and django-pagination. - Source: Reddit / 8 months ago
Datatables, https://datatables.net Super easy to use, good documentation and a wide range of plugins. - Source: Reddit / 8 months ago
More constructively, with large data sets (if you dont want to make a bunch of precanned views and want to keep dynamic filtering/user empowerment) I would swap to using something like https://datatables.net/. - Source: Reddit / 8 months ago
BTW, have you considered DataTables? It does most of this stuff out of the box. - Source: Reddit / 9 months ago
Do you know an article comparing DataTables to other products?
Suggest a link to a post with product alternatives.