Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Releases: ghiscoding/slickgrid-react

v5.14.0

26 Apr 21:55
Compare
Choose a tag to compare

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

  • allow providing custom date format via base Date Formatter (#496) (50b95bd)
  • filter: add collectionLazy callback to Column Filter (#495) (c0960d4)

v5.13.4

10 Apr 00:17
Compare
Choose a tag to compare

5.13.4 (2025-04-10)

Bug Fixes

v5.13.3

02 Apr 00:42
Compare
Choose a tag to compare

5.13.3 (2025-04-02)

Bug Fixes

  • findItemInTreeStructure() shouldn't throw w/large dataset (#488) (eedbfb6)

v5.13.2

29 Mar 18:24
Compare
Choose a tag to compare

5.13.2 (2025-03-29)

Bug Fixes

  • shift + a should not select all cells upwards (#486) (c83734a)

v5.13.1

19 Mar 02:42
Compare
Choose a tag to compare

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

  • Row Detail redraw all should work as expected (#472) (e3a7c0b)
  • Row Detail should also work with fixed grid height or w/o autoHeight (#473) (c2a3c88)

v5.13.0 - Row Detail with inner Grid

01 Mar 21:39
Compare
Choose a tag to compare

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

  • deps: update all non-major dependencies (#461) (041dd42)
  • Row Detail could end up unmounting wrong panel index (#465) (2edf4c2)
  • Row Detail preload comp should call unmount lifecycle (#464) (494bc92)

v5.12.2

08 Feb 18:57
Compare
Choose a tag to compare

5.12.2 (2025-02-08)

Bug Fixes

  • update to latest Slickgrid-Universal 5.12.2 (#460) (087a757)

v5.12.1

25 Jan 18:43
Compare
Choose a tag to compare

5.12.1 (2025-01-25)

Bug Fixes

  • add autoResize.autoHeight to resize by dataset length (#457) (9b91f6a)
  • RowSpan should work with Excel Export and merge cells (#456) (c68b606)

v5.12.0 - Rowspan feature 📢

21 Jan 03:37
Compare
Choose a tag to compare

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)

v5.11.0

14 Dec 21:14
Compare
Choose a tag to compare

5.11.0 (2024-12-14)

A new Example 43 was added to demo how to dynamically create a grid from a CSV file import (Excel import is also achievable)

Features

  • allow using SlickgridReact component w/o grid options (#445) (0b2fb80)
  • dynamically create grid from imported CSV data (#447) (0068a33)

Bug Fixes

  • add missing collection observer to watch changes (#443) (ca9340d)