You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
***filters:** use offset left to calculate auto position (left/right) ([9d79e2d](https://github.com/ghiscoding/angular-slickgrid/commit/9d79e2d149b21fb8766e0ad40cbbd4cf4f6572e6))
10
+
***filters:** use offset left to calculate multi-select auto position (left/right) ([9d79e2d](https://github.com/ghiscoding/angular-slickgrid/commit/9d79e2d149b21fb8766e0ad40cbbd4cf4f6572e6))
it('should call the method and expect only 1 method of slickgrid "setColumns" to be called when we define 2nd argument (triggerAutoSizeColumns) as False',()=>{
it('should subscribe to some Extension Addon SlickGrid events and expect the event to be triggered when a notify is triggered after service was initialized',()=>{
Copy file name to clipboardExpand all lines: src/app/modules/angular-slickgrid/services/gridState.service.ts
+45-1
Original file line number
Diff line number
Diff line change
@@ -148,14 +148,45 @@ export class GridStateService {
148
148
returncurrentColumns;
149
149
}
150
150
151
+
/**
152
+
* Dynamically change the arrangement/distribution of the columns Positions/Visibilities and optionally Widths.
153
+
* For a column to have its visibly as hidden, it has to be part of the original list but excluded from the list provided as argument to be considered a hidden field.
154
+
* If you are passing columns Width, then you probably don't want to trigger the autosizeColumns (2nd argument to False).
155
+
* @param {Array<Column>} definedColumns - defined columns
156
+
* @param {Boolean} triggerAutoSizeColumns - True by default, do we also want to call the "autosizeColumns()" method to make the columns fit in the grid?
* Reset the grid to its original (all) columns, that is to display the entire set of columns with their original positions & visibilities
325
+
* @param {Boolean} triggerAutoSizeColumns - True by default, do we also want to call the "autosizeColumns()" method to make the columns fit in the grid?
0 commit comments