File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
projects/igniteui-angular/src/lib/grids Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff 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 ) {
You can’t perform that action at this time.
0 commit comments