Skip to content

Releases: 6pac/SlickGrid

5.18.6

Choose a tag to compare

@github-actions github-actions released this 17 May 03:13
9909174

5.18.6 (2026-05-17)

Bug Fixes

expose width threshold for treat as locked, fixes (#1209) (75f2237)

5.18.5

Choose a tag to compare

@github-actions github-actions released this 08 May 01:45
43066f4

5.18.5 (2026-05-08)

in this release, I asked Copilot AI to review all of the old opened issues, it was able to provide fixes for a lot of them (I also used all of my free month credits in the process). However please note that one of these fixes is rather important to be aware as shown below:

⚠️ Warning about the multiSelect option which is now properly enforced

Prior to this release, disabling multiSelect grid option did not really do anything, but it is now properly respected with this new release and will now correctly enforce single-row-only selection. To allow multiple row selection while preventing the currently-active row from being automatically selected during navigation, use selectActiveRow: false instead (keeping multiSelect at its default true).


Bug Fixes

  • enable momentum scrolling on iOS to prevent scroll interruption at horizontal boundaries (#1198) (99e330e)
  • Group totals formatter missing column context (#1202) (cf2dbe6)
  • respect multiSelect option in checkbox selection (#1203) (1227b71)
  • restore individual cell values on undo for multi-cell paste (#1199) (9aa520c)
  • use dataItemColumnValueExtractor for grouping with nested objects (#1200) (a0d1d01)
  • use numeric sort in deleteItems to prevent data loss, fixes #1178 (#1204) (43066f4)

5.18.4

Choose a tag to compare

@github-actions github-actions released this 05 May 01:11
89fe141

5.18.4 (2026-05-05)

Bug Fixes

crash shadow root with FCV in autosize mode (#1197) fff47a5, closes #1196

5.18.3

Choose a tag to compare

@github-actions github-actions released this 22 Mar 03:04
ab16763

5.18.3 (2026-03-22)

Bug Fixes

5.18.2

Choose a tag to compare

@github-actions github-actions released this 23 Jan 20:36
cbfa706

5.18.2 (2026-01-23)

Bug Fixes

  • only assign CellRangeSelector when Hybrid has dragToSelect set (#1174) (e8f6197)

5.18.1

Choose a tag to compare

@github-actions github-actions released this 20 Jan 00:30

5.18.1 (2026-01-20)

Bug Fixes

  • double-clicking a checkmark icon should keep current cell selection (#1172) (138d298)
  • HeaderMenu/ColumnPicker hiding column need re-render Header Groups (#1167) (8412011)
  • HybridSelectionModelOption should all be optional (#1173) (5889639)

Features

  • Master/Detail grids, allow single row click w/o checkbox column (43e31fa)

5.18.0

Choose a tag to compare

@github-actions github-actions released this 21 Nov 21:21
9bb4126

5.18.0 (2025-11-21)

Bug Fixes

  • only show Cell Selection drag handle w/using mixed/cell selection (#1164) (aa63977)
  • unable to drag row when the cell formatter renders html elements (#1163) (8dd7fdf)

Features

  • add new autoEditByKeypress to open editor by typing a char (#1162) (ff812c7)

5.17.2

Choose a tag to compare

@github-actions github-actions released this 14 Nov 04:31

5.17.2 (2025-11-14)

Bug Fixes

Features

  • add new Cell/Row override to Hybrid Selection Model (#1160) (5c4111c)

5.17.1

Choose a tag to compare

@github-actions github-actions released this 01 Nov 19:49
213e61a

5.17.1 (2025-11-01)

Bug Fixes

  • column cannot be resized when not orderable (#1155) (65d42f7)
  • hybrid selection model to handle case when the selectedCell is none (#1158) (213e61a)
  • new Hybrid Selection Model not working as ESM (#1156) (89a5756)
  • Hybrid Selection Model, rename prop from ...Arr to rowSelectColumnIds (426fa63)

5.17.0 - Hybrid Selection Mode

Choose a tag to compare

@github-actions github-actions released this 28 Oct 02:39

5.17.0 (2025-10-28)

Thanks to Ben (6pac), we now have a great new plugin Hybrid Selection Model which is a merge of both Cell & Row Selection Models + extra features. This new plugin was created to overcome a restriction in SlickGrid which is that only 1 selection model can be registered at a time, and so with this new Hybrid Selection Model we can now do a Cell & Row Selections in the same grid via this new all-in-one plugin. It also comes with extra new features that are replicating some Excel behaviors, for example after a cell selection is made, you can now use the bottom-right corner (little square) to expand the selection further, you can also use an optional Drag-Fill logic to auto-fill cell values which is also similar to Excel (you can see animated gif in PR #1143 and/or open examples below).🎉 We also just reached 2000 stars ⭐ Thank you!

See 2 new examples for this new Hybrid Selection Model & optional Drag-Fill (similar to Excel for auto-filling cell values while dragging)

Note: v5.16.0 was skipped by mistake while creating a new release workflow


Bug Fixes

  • auto-scroll outside the viewport should stop Row Move dragging (#1138) (1296a40)
  • Bug Fix Pre-edit Click mode (PreClick) and create example (#1150) (a8415a0)
  • column freeze + reorder same order could cause columns misalignment (#1141) (9d523f5)
  • column header reorder should keep scroll position even frozen grid (#1148) (3177551)
  • show an alert to user when trying to freeze wider than viewport (#1142) (9e85fa6)
  • small fix in Row Detail plugin to make it work with Grouping (#1145) (f24ac05)
  • validate allowed frozen column & alert when invalid (#1147) (e39304a)

Features

  • Drag-Fill capability and Hybrid SelectionModel plugin (#1143) (0bd9277)