Dataset vs Dataview #1148
Answered
by
ghiscoding
jano-kucera
asked this question in
Q&A
-
Hello, I'm having trouble understanding what is the difference between using dataset and dataview. I went through examples and code, but I do not understand yet the proper way of handling the backend data. |
Beta Was this translation helpful? Give feedback.
Answered by
ghiscoding
May 24, 2023
Replies: 1 comment 3 replies
-
Here's my current solution, seems to work just fine with my custom pagination (no pages, just more results on click), I just don't get the difference between the properties. |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
the original SlickGrid has 2 ways to build the grid and display data, the first option is without any external service (all the code is in
slick.grid.js
), the second option is to use the external Slick DataView which is an external service (in the fileslick.dataview.js
). The second option with DataView has multiple benefits because it allows for Grouping & Aggregators and also has Pagination feature, and the DataView is more optimized for big dataset since uses Map for uniqueness. Because of the extra features that the Slick DataView offers, I decided to use the DataView exclusively in Angular-Slickgrid from the start.You can see this SlickGrid Example Basic for option one (without Data…