Skip to content

Releases: ghiscoding/slickgrid-universal

v3.5.0

10 Nov 23:35
Compare
Choose a tag to compare

3.5.0 (2023-11-10)

Release Info

This release brings couple of small features like compoundOperatorAltTexts (read Wiki) and GraphQL verbatimSearchTerms which avoid transforming filter searchTerms like null to an empty string (the lib does that by default because null wouldn't work on most filters which is why it is transformed to an empty string), some user might want the untouched terms and this verbatim flag gives you this. Thanks to @Harsgalt86 for bringing the verbatim option

Bug Fixes

Features

v3.4.2

02 Nov 02:00
Compare
Choose a tag to compare

3.4.2 (2023-11-02)

Release Info

This new release brings nested sub-menu(s) to all Menu plugins, you can see examples below or see print screens in each PRs, you can use the sub-menus with 2 type of events (click or mouseover, the latter is the default). This involved a lot of refactoring, also please note that prior to this version ColumnPicker & GridMenu were created at the same time as the grid but menus were hidden and shown whenever clicked, however with this new release ColumnPicker/GridMenu will be created dynamically and on-the-fly.

Also a big thanks to @Harsgalt86 for adding full support for GraphQL optional cursor pagination. Previous version never fully implemented cursor pagination until today. :) 🚀

Deprecations ⚠️

Please note that to align all Menu plugins, I decided to rename all HeaderMenu items array list as commandItems, updating your arrays are preferred but do not worry if you keep the previous names they still work and we will simply show a console warning for you to eventually change them.

  • Header Menu
    • rename items to commandItems

Examples with sub-menus & Wikis docs

Bug Fixes

Features

v3.3.2

06 Oct 23:04
Compare
Choose a tag to compare

3.3.2 (2023-10-06)

Bug Fixes

v3.3.1

05 Oct 04:28
Compare
Choose a tag to compare

3.3.1 (2023-10-05)

Reverts

v3.3.0

05 Oct 02:45
Compare
Choose a tag to compare

3.3.0 (2023-10-05)

Bug Fixes

Features

v3.2.2

24 Sep 03:46
Compare
Choose a tag to compare

3.2.2 (2023-09-24)

Bug Fixes

Reverts

v3.2.1 - Tree Data Totals (with Aggregators)

21 Aug 17:47
Compare
Choose a tag to compare

3.2.1 (2023-09-05)

Prior to this release, I always thought Tree Data was not quite feature complete, the missing piece was Tree Totals with Aggregators and this is exactly what this new release brings. We can now calculate totals on a tree by using the same existing Aggregators (note that they had to be modified to support Tree Data aggregations). Most Aggregators are supported, but not all, the ones that are available in a Tree Data grid are (avg, count, min, max and sum), for more information see:


Features

Bug Fixes

v3.1.0

20 Jul 23:57
Compare
Choose a tag to compare

3.1.0 (2023-07-20)

Features

Bug Fixes

v3.0.1

01 Jul 00:33
Compare
Choose a tag to compare

3.0.1 (2023-07-01)

This new release also depend on an updated version of SlickGrid v4.0.1 (see release 4.0.1)

Bug Fixes

v3.0.0 - jQuery removal

29 May 16:49
Compare
Choose a tag to compare

3.0.0 (2023-05-29)

New major official 3.0 release which removes jQuery requirement entirely 🚀🎉

Quick Summary - SlickGrid is now native

Here is our new major (breaking change) version v3.0.0 release, it uses the new SlickGrid v4.0.0 which dropped jQuery requirement. Also in order to completely remove jQuery, it not only required SlickGrid to be jQuery free but also required us to rewrite the multiple-select 3rd party lib (jQuery based) into a brand new multiple-select-vanilla lib which is now native and has zero dependencies. Now the entire Slickgrid-Universal no longer requires jQuery (you can still use jQuery but it's now totally optional) and is now using native browser code, this should lower your build size and also improve the grid performance as well.

Follow the Migration 3.x Guide


⚠ BREAKING CHANGES

  • drop jQuery requirement & use multiple-select-vanilla dependency (#976)

Features

Bug Fixes