Releases: ghiscoding/slickgrid-react
v5.14.0
5.14.0 (2025-04-26)
Last Release before next major
With this new release, I'm adding a new collectionLazy
but only for single/multiple select dropdown filters, which could improve perf when loading grid that have lots of columns. For now this is only available for the select dropdown, but I might add it this to the autocomplete filter as well (if anyone is requesting it).
Lastly and as the title suggest, this should be the last version 🤞🏻 before the next major release which should arrive in the next couple of weeks. The next major will drop CJS and provide ESM-Only. Also Slickgrid-React, as all other frameworks, will all be moved under the Slickgrid-Universal project which will help tremendously with the project maintenance. 🚀
Features
v5.13.4
v5.13.3
v5.13.2
v5.13.1
5.13.1 (2025-03-19)
This release brings a couple more fixes for the Row Detail plugin and another big change is that all examples were converted to Functional Component, ChatGPT helped a bit ;)
Bug Fixes
v5.13.0 - Row Detail with inner Grid
5.13.0 (2025-03-01)
You can now add a grid inside a Row Detail, however there are a few things to be aware. Any time a Row Detail is falling outside the main grid viewport, it will be unmounted and until it comes back into the viewport it will then be remounted & re-rendered. The process of unmounting and remounting means that Row Detail previous shape & states aren't preserved, however you could use Grid State & Presets (as shown in the demo) to overcome this problem. Also note that the logic to calculate in/out of viewport was completely re-implemented and should (hopefully) work better and should re-render a lot less often and only when necessary. It also now properly unmount row detail components before being removed from the viewport, this wasn't done properly in previous versions and it leaked components/elements in the DOM.
New example
Features
Bug Fixes
v5.12.2
v5.12.1
v5.12.0 - Rowspan feature 📢
5.12.0 (2025-01-21)
Rowspan feature
We already had colspan
supported, via DataView ItemMetadataProvider, and now we're also adding support for rowspan
as well (which is partially reusing the code from @GerHobbelt's fork that had rowspan
). However please be aware that both of these features come with special constraints, any side effects (i.e. Filtering/Sorting/Paging/ColumnReorder/ColumnHidding) will require you to add your own logic to deal with these side effects (this was also true for colspan
, so there's nothing new here). In other words the lib doesn't know and cannot guess how and what you want to do with the spanning when a side effect occurs, because colspan
/rowspan
are, and will always be, based on row indexes and the question arise when a side effect occurs what do you want to do? Do you want to keep the spanning on the same row or do you want to only keep half of it or remove it all? The system cannot guess what you want to do when these side effects happens unless you tell it what to do... so use this new feature with some due diligence.
You can see these 2 new examples demoing rowspan
below and also read the Column/Row Spanning documentation
Note: please note that
rowspan
does not currently work well with Excel/CSV Export and it will be looked into in the near future.
Features
Bug Fixes
- add all missing events to Slickgrid-React props def (6abbc94)