File tree Expand file tree Collapse file tree 1 file changed +3
-5
lines changed Expand file tree Collapse file tree 1 file changed +3
-5
lines changed Original file line number Diff line number Diff line change 6
6
IgxHierarchicalGridComponent ,
7
7
IPinningConfig ,
8
8
RowPinningPosition ,
9
- IRowDragStartEventArgs ,
10
9
GridSummaryCalculationMode ,
11
10
GridSummaryPosition
12
11
} from 'igniteui-angular' ;
@@ -310,13 +309,12 @@ export class GridRowAPISampleComponent implements OnInit {
310
309
public onEnter ( ) {
311
310
this . dragIcon = 'add' ;
312
311
}
313
- public onRowDragStart ( args : IRowDragStartEventArgs ) {
312
+ public onRowDragStart ( ) {
314
313
const count = this . grid . selectedRows . length || 1 ;
315
314
this . countIcon = `filter_${ count > 9 ? '9_plus' : `${ count } ` } ` ;
316
- return args ;
317
315
}
318
- public onLeave ( args ) {
319
- this . onRowDragStart ( args ) ;
316
+ public onLeave ( ) {
317
+ this . onRowDragStart ( ) ;
320
318
this . dragIcon = 'arrow_right_alt' ;
321
319
}
322
320
}
You can’t perform that action at this time.
0 commit comments