Skip to content
This repository was archived by the owner on Jun 1, 2025. It is now read-only.

Commit 9778c0b

Browse files
authored
Merge pull request #202 from ghiscoding/bugfix/row-detail-scroll
fix(rowDetail): update to latest SlickGrid version, fixes #180
2 parents ebf3d2f + c1c037b commit 9778c0b

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@
8383
"lodash.isequal": "^4.5.0",
8484
"moment-mini": "^2.22.1",
8585
"rxjs": "^6.3.3",
86-
"slickgrid": "^2.4.7",
86+
"slickgrid": "^2.4.8",
8787
"text-encoding-utf-8": "^1.0.2",
8888
"tslib": "^1.9.3",
8989
"vinyl-paths": "^2.1.0"

src/app/examples/grid-rowdetail.component.html

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ <h2>{{title}}</h2>
1010
</button>
1111
</span>
1212

13+
<hr/>
14+
1315
<angular-slickgrid gridId="grid21"
1416
[columnDefinitions]="columnDefinitions"
1517
[gridOptions]="gridOptions"

src/app/examples/grid-rowdetail.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ export class GridRowDetailComponent implements OnInit {
3232
columnDefinitions: Column[];
3333
gridOptions: GridOption;
3434
dataset: any[];
35-
detailViewRowCount = 7;
35+
detailViewRowCount = 9;
3636
selectedLanguage: string;
3737

3838
constructor(private translate: TranslateService) {

0 commit comments

Comments
 (0)