Which plugin is used to show the data in front end of socrata

62 views Asked by At

Is it possible to implement the view(the table) that socrata gives to users to implement in a mvc application? Especially the scroll effect where it takes only ms to load data. If not can anyone suggest any lightweight grid for same (scroll with faster loading)

1

There are 1 answers

0
kaveman On

The scroll effect is making use of paging by loading data dynamically, rather than trying to load the entire dataset at once.

If you are using SODA.NET, the Resource object has a GetRows(limit, offset) method that you can use to retrieve paged sets of rows in the dataset.

There are any number of ways you could implement the scroll-to-load, including client-side AJAX requests. See this answer to a related question for a starting point.