We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3e399d8 commit f35bc03Copy full SHA for f35bc03
projects/igniteui-angular/src/lib/grids/tree-grid/tree-grid-row.component.ts
@@ -71,21 +71,6 @@ export class IgxTreeGridRowComponent extends IgxRowDirective<IgxTreeGridComponen
71
}
72
73
74
- /**
75
- * Gets the ID of the row.
76
- * A row in the grid is identified either by:
77
- * - primaryKey data value,
78
- * - the whole rowData, if the primaryKey is omitted.
79
- *
80
- * ```typescript
81
- * let rowID = this.grid.selectedRows[2].rowID;
82
- * ```
83
- */
84
- public get rowID() {
85
- const primaryKey = this.grid.primaryKey;
86
- return primaryKey ? this.rowData[primaryKey] : this.rowData;
87
- }
88
-
89
/**
90
* @hidden
91
*/
0 commit comments