@@ -120,6 +120,31 @@ describe('Row Pinning #grid', () => {
120
120
expect ( grid . calcHeight - expectedHeight ) . toBeLessThanOrEqual ( 1 ) ;
121
121
} ) ;
122
122
123
+ it ( 'should allow pinning row at specified index via API.' , ( ) => {
124
+ grid . pinRow ( fix . componentInstance . data [ 1 ] ) ;
125
+ fix . detectChanges ( ) ;
126
+
127
+ expect ( grid . pinnedRows . length ) . toBe ( 1 ) ;
128
+ expect ( grid . pinnedRows [ 0 ] . rowData ) . toBe ( fix . componentInstance . data [ 1 ] ) ;
129
+
130
+ // pin at index 0
131
+ grid . pinRow ( fix . componentInstance . data [ 2 ] , 0 ) ;
132
+ fix . detectChanges ( ) ;
133
+
134
+ expect ( grid . pinnedRows . length ) . toBe ( 2 ) ;
135
+ expect ( grid . pinnedRows [ 0 ] . rowData ) . toBe ( fix . componentInstance . data [ 2 ] ) ;
136
+ expect ( grid . pinnedRows [ 1 ] . rowData ) . toBe ( fix . componentInstance . data [ 1 ] ) ;
137
+
138
+ // pin at index 1
139
+ grid . pinRow ( fix . componentInstance . data [ 3 ] , 1 ) ;
140
+ fix . detectChanges ( ) ;
141
+
142
+ expect ( grid . pinnedRows . length ) . toBe ( 3 ) ;
143
+ expect ( grid . pinnedRows [ 0 ] . rowData ) . toBe ( fix . componentInstance . data [ 2 ] ) ;
144
+ expect ( grid . pinnedRows [ 1 ] . rowData ) . toBe ( fix . componentInstance . data [ 3 ] ) ;
145
+ expect ( grid . pinnedRows [ 2 ] . rowData ) . toBe ( fix . componentInstance . data [ 1 ] ) ;
146
+ } ) ;
147
+
123
148
it ( 'should emit onRowPinning on pin/unpin.' , ( ) => {
124
149
spyOn ( grid . onRowPinning , 'emit' ) . and . callThrough ( ) ;
125
150
@@ -371,6 +396,33 @@ describe('Row Pinning #grid', () => {
371
396
expect ( gridFilterData [ 1 ] . ID ) . toBe ( 'BERGS' ) ;
372
397
} ) ;
373
398
399
+ it ( 'should page through unpinned collection with modified pageSize = pageSize - pinnedRows.lenght.' , ( ) => {
400
+ // pin 2nd row
401
+ grid . paging = true ;
402
+ grid . perPage = 5 ;
403
+ fix . detectChanges ( ) ;
404
+ let row = grid . getRowByIndex ( 1 ) ;
405
+ row . pin ( ) ;
406
+ fix . detectChanges ( ) ;
407
+
408
+ expect ( grid . pinnedRows . length ) . toBe ( 1 ) ;
409
+ let pinRowContainer = fix . debugElement . queryAll ( By . css ( FIXED_ROW_CONTAINER ) ) ;
410
+ expect ( pinRowContainer . length ) . toBe ( 1 ) ;
411
+
412
+ expect ( grid . dataView . length ) . toBe ( 4 ) ;
413
+
414
+ // unpin
415
+ row = grid . getRowByIndex ( 0 ) ;
416
+ row . unpin ( ) ;
417
+ fix . detectChanges ( ) ;
418
+
419
+ expect ( grid . pinnedRows . length ) . toBe ( 0 ) ;
420
+ pinRowContainer = fix . debugElement . queryAll ( By . css ( FIXED_ROW_CONTAINER ) ) ;
421
+ expect ( pinRowContainer . length ) . toBe ( 0 ) ;
422
+
423
+ expect ( grid . dataView . length ) . toBe ( 5 ) ;
424
+ } ) ;
425
+
374
426
it ( 'should apply sorting to both pinned and unpinned rows.' , ( ) => {
375
427
grid . getRowByIndex ( 1 ) . pin ( ) ;
376
428
grid . getRowByIndex ( 5 ) . pin ( ) ;
0 commit comments