Skip to content

Commit b50b783

Browse files
committed
chore(*): change rowSelectable with isRowSelectable because is deprecated
1 parent 920085e commit b50b783

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

projects/igniteui-angular/src/lib/grids/grid-base.component.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1154,7 +1154,7 @@ export abstract class IgxGridBaseComponent extends DisplayDensityBase implements
11541154
* ```
11551155
* ```html
11561156
* <igx-grid #grid3 (onCellEdit)="editDone($event)" [data]="remote | async" (onSortingDone)="process($event)"
1157-
* [primaryKey]="'ProductID'" [rowSelectable]="true">
1157+
* [primaryKey]="'ProductID'">
11581158
* <igx-column [sortable]="true" [field]="'ProductID'"></igx-column>
11591159
* <igx-column [editable]="true" [field]="'ProductName'"></igx-column>
11601160
* <igx-column [sortable]="true" [field]="'UnitsInStock'" [header]="'Units in Stock'"></igx-column>
@@ -4475,7 +4475,7 @@ export abstract class IgxGridBaseComponent extends DisplayDensityBase implements
44754475
public getFeatureColumnsWidth() {
44764476
let width = 0;
44774477

4478-
if (this.rowSelectable) {
4478+
if (this.isRowSelectable) {
44794479
width += this.headerCheckboxContainer ? this.headerCheckboxContainer.nativeElement.getBoundingClientRect().width : 0;
44804480
}
44814481
if (this.rowDraggable) {

0 commit comments

Comments
 (0)