-
-
Notifications
You must be signed in to change notification settings - Fork 120
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(extension): add latest slickgrid with RowMove improvements (#428)
- now create column definition just by the enableRowMoveManager flag - also keep row selection with dataview syncGridSelection - latest slickgrid version also brought the usabilityOverride callback method that was added in RowMoveManager plugin - possible ref #256 Co-authored-by: Ghislain Beaulac <[email protected]>
- Loading branch information
1 parent
ff210ec
commit 4f4b231
Showing
10 changed files
with
363 additions
and
59 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,13 +1,10 @@ | ||
<div class="container-fluid"> | ||
<h2>{{title}}</h2> | ||
<div class="subtitle" [innerHTML]="subTitle"></div> | ||
<h2>{{title}}</h2> | ||
<div class="subtitle" [innerHTML]="subTitle"></div> | ||
|
||
<div class="col-sm-12"> | ||
<angular-slickgrid gridId="grid2" | ||
(onAngularGridCreated)="angularGridReady($event)" | ||
[columnDefinitions]="columnDefinitions" | ||
[gridOptions]="gridOptions" | ||
[dataset]="dataset"> | ||
</angular-slickgrid> | ||
</div> | ||
<div class="col-sm-12"> | ||
<angular-slickgrid gridId="grid17" (onAngularGridCreated)="angularGridReady($event)" | ||
[columnDefinitions]="columnDefinitions" [gridOptions]="gridOptions" [dataset]="dataset"> | ||
</angular-slickgrid> | ||
</div> | ||
</div> |
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
Oops, something went wrong.