-
-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(header): re-create header grouping title after changing picker cols
- after hiding/showing columns from ColumnPicker/GridMenu we need to re-create the header grouping titles
- Loading branch information
1 parent
bc07790
commit 872c780
Showing
7 changed files
with
82 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,13 @@ | ||
import { Extension } from './extension.interface'; | ||
import { ExtensionName } from '../enums/extensionName.enum'; | ||
import { SlickControlList, SlickPluginList } from '../enums'; | ||
import { ExtensionName, SlickControlList, SlickPluginList } from '../enums/index'; | ||
|
||
export interface ExtensionModel { | ||
export interface ExtensionModel<P extends (SlickControlList | SlickPluginList), E extends Extension> { | ||
/** Name of the Slickgrid-Universal Extension */ | ||
name: ExtensionName; | ||
|
||
/** Instance of the Addon (3rd party SlickGrid Control or Plugin) */ | ||
instance: SlickControlList | SlickPluginList; | ||
instance: P; | ||
|
||
/** Extension Service (in Slickgrid-Universal) */ | ||
class: Extension | null; | ||
class: E; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters