Skip to content
This repository was archived by the owner on Jun 1, 2025. It is now read-only.

Resize Columns by their Content

Choose a tag to compare

@ghiscoding ghiscoding released this 22 Apr 22:10
· 2145 commits to master since this release

The biggest feature is this release is probably the Resize Columns by their Content (that is an opt-in feature since it requires cpu cycle to parse through the dataset to calculate width of each column).

There's also Row Selection Count that is now showing in the Custom Footer (unless you already have left footer text, if so it won't override it). The grids with colspan were also not exporting correctly and now they do (that is related to reading the item metadata)... there's a few other things, just see the full list below. You can also now filter empty values on the single/multipleSelect Filter (see Wiki)

Direct Link to Example Components

Also note, every Example now have a direct link to each Component TypeScript file, the link will be on the far right BS4+ (or beside the title in BS3). This will be much quicker to find the associated code of the Example Component you're looking at.

image

Enjoying the lib?

Make sure to upvote ⭐ and/or Buy Me a Coffee
... and if you already have, well thank you 😺

Cheers


Features

  • filters: add option to filter empty values for select filter (7c9ce5a)
  • filters: option to add custom compound operator list, fix #733 (a86d3c5)
  • footer: add row selection count to the footer component (5604669)
  • resize: add column resize by cell content (c198686)
  • typing: add missing item metadata interface (c3eefd0)

Bug Fixes

  • exports: grid with colspan should be export accordingly (00989ab)
  • footer: add correct implementation of locale usage in custom footer (5dcac2f)
  • observables: http cancellable Subject should be unsubscribed (c439324)
  • selection: full row selection should be selected w/show hidden row (131ada5), closes #739