-
-
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(menu): add action & override callbacks to all Menu plugins
- the list of menus are HeaderMenu, GridMenu & HeaderButton (with some exceptions) - add more Cypress tests as well
- Loading branch information
1 parent
d4594d1
commit a7967bb
Showing
30 changed files
with
739 additions
and
189 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
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,10 +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" (onDataviewCreated)="dataviewReady($event)" (onGridCreated)="gridReady($event)" | ||
[columnDefinitions]="columnDefinitions" [gridOptions]="gridOptions" [dataset]="dataset"> | ||
</angular-slickgrid> | ||
</div> | ||
<div class="col-sm-12"> | ||
<angular-slickgrid gridId="grid7" (onDataviewCreated)="dataviewReady($event)" (onGridCreated)="gridReady($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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,15 @@ | ||
<div class="container-fluid"> | ||
<h2>{{title}}</h2> | ||
<div class="subtitle" [innerHTML]="subTitle"></div> | ||
<h2>{{title}}</h2> | ||
<div class="subtitle" [innerHTML]="subTitle"></div> | ||
|
||
<button class="btn btn-default btn-sm" (click)="switchLanguage()"> | ||
<i class="fa fa-language"></i> | ||
Switch Language | ||
</button> | ||
<button class="btn btn-default btn-sm" (click)="switchLanguage()"> | ||
<i class="fa fa-language"></i> | ||
Switch Language | ||
</button> | ||
|
||
<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="grid8" (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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
.blue { | ||
color: rgb(73, 73, 255); | ||
} | ||
.orange { | ||
color: orange; | ||
} | ||
.red { | ||
color: red; | ||
} | ||
.bold { | ||
font-weight: bold; | ||
} | ||
.italic { | ||
font-style: italic; | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
.blue { | ||
color: rgb(73, 73, 255); | ||
} | ||
.orange { | ||
color: orange; | ||
} | ||
.red { | ||
color: red; | ||
} | ||
.bold { | ||
font-weight: bold; | ||
} | ||
.italic { | ||
font-style: italic; | ||
} |
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
Oops, something went wrong.