Skip to content

Releases: ghiscoding/slickgrid-universal

v5.5.1

17 Aug 02:53
Compare
Choose a tag to compare

5.5.1 (2024-08-17)

Bug Fixes

v5.5.0 - Infinite Scroll

07 Aug 00:22
Compare
Choose a tag to compare

5.5.0 (2024-08-07)

Release Info

This new release adds the Infinite Scroll feature and with it adds not just 1 but 3 new examples to cover all use cases (read the new Infinite Scroll docs for more info)

  1. Example 26 - with OData Backend
  2. Example 27 - with GraphQL Backend
  3. Example 28 - with JSON data (local)

Infinite scrolling allows the grid to lazy-load rows from the server when reaching the scroll bottom (end) position. In its simplest form, the more the user scrolls down, the more rows get loaded. If we reached the end of the dataset and there is no more data to load, then we'll assume to have the entire dataset loaded in memory. This contrast with the regular Pagination approach which will only hold a single page data at a time.


Features

Bug Fixes

  • core: pinning 1st column could caused the header to get misaligned (42c94e8) - by @ghiscoding
  • styles: Add missing semicolon in line 1147 of _variables.scss (36c3187) - by @oilmonkey

v5.4.0

20 Jul 16:02
Compare
Choose a tag to compare

5.4.0 (2024-07-20)

Features

Bug Fixes

v5.3.4

13 Jul 17:38
Compare
Choose a tag to compare

5.3.4 (2024-07-13)

Bug Fixes

  • styling: fix SASS warnings for declarations mixed with nested rules (de9460d) - by @ghiscoding

v5.3.3

06 Jul 00:06
Compare
Choose a tag to compare

5.3.3 (2024-07-06)

Bug Fixes

v5.3.2

29 Jun 01:15
Compare
Choose a tag to compare

5.3.2 (2024-06-29)

Bug Fixes

v5.3.1

28 Jun 23:57
Compare
Choose a tag to compare

5.3.1 (2024-06-28)

Bug Fixes

v5.3.0

28 Jun 18:08
Compare
Choose a tag to compare

5.3.0 (2024-06-28)

Features

Bug Fixes

v5.2.0 - Filter Shortcuts

18 Jun 01:10
Compare
Choose a tag to compare

5.2.0 (2024-06-18)

New Release Info

This new release brings Filter Shortcuts that once defined will be added as sub-menus the Column Header Menu. These shortcuts are nothing new in terms of what you can already do with Column Filters, however the main reason to use them is to define some filters with simple logic, for example give me all the Blanks or Non-Blanks Values or even better filter the last 6 months data. For more info and demo, take a look at:

  • Example 10 - Filter "Next 20 days" with Date Range
  • Example 11 - Filter "Country" Blanks/Non-Blanks and "Finish" Until Now/Future
  • Read the Filter Shortcuts docs on how to use it

Lastly there's also a new Example 24 which is showing Column Totals in the grid Footer (the code was taken from an old SlickGrid example).


Features

Bug Fixes

v5.1.0 - Filter Predicates

07 Jun 23:57
Compare
Choose a tag to compare

5.1.0 (2024-06-07)

New Release Info

This new release brings a ton of new features and most of the new feature ideas came from this great Stack Overflow question Angular Slickgrid - Custom Filter which the user asked if it was possible to create a custom filter as SQL LIKE. So, from this idea in mind and considering that we already had a sortComparer for custom Sorting but no ways to customize Filtering, now let's work around this idea shall we?

  • filterPredicate for local JSON dataset (see Example 14 for SQL LIKE demo)
  • new filterQueryOverride which is the filter override for Backend Services (OData / GraphQL)
  • new OperatorType.custom that can be used with above custom filter predicate/override
  • new Operator a*z (StartsWith & EndsWith combo) available for local JSON dataset and Backend Services
  • new Top-Header panel which now allows the user to use both Draggable Grouping and Header Grouping together, this just wasn't possible before (see Example 3)

This new release also brings a lot of improvements to the Excel Export with a new Example 23 which demos how to dynamically use Excel Formulas (e.g. Sums), you can even use Excel Formulas with Grouping to do Sums, isn't it awesome!? Let's just say that pretty much everything you can do in excel-builder-vanilla, you can probably do in Slickgrid-Universal.

A huge thanks to @zewa666 and @jr01 for their contributions & feedback to add some of these new features and fixes. 🚀


Features

Bug Fixes