Does SlickGrid have a plan to develop a Vue version? #691
Replies: 2 comments
-
not directly but there's this old package made by someone else, vue-slimgrid, or you could also try to use Slickgrid-Universal which I support and is a wrapper on top of SlickGrid, it's probably usable in Vue by simply importing it, at least someone did that in React so I guess it should also work in Vue too. |
Beta Was this translation helpful? Give feedback.
-
I would suspect that there is some fairly straightforward coding problem causing these issues - probably in the data source side of things. We have users who have fed billions of rows into the grid. The main issue with IE11 (I have to support it too) is the lack of ES6 support. |
Beta Was this translation helpful? Give feedback.
-
Our legacy product used SlickGrid for performance purposes and works pretty well on IE11. Now we have new products developed with Element UI based on Vue, and it performed well on Chrome. However, when it comes to the IE11, it gets sucked.
The situation we are dealing with is the following:
More than 20 columns in the grid
Some columns like name and id need to be frozen when scrolling
Some columns have nested items like input, select
Some columns need to show content when hovering
On top of these requirements, when the data size reached 50, the grid started to get slow for scrolling, clicking and input, showing the hovered div, and when the data size came to 100, everything was unacceptable.
I hope we can have the Vue version SlickGrid!
Beta Was this translation helpful? Give feedback.
All reactions