pm-controls
Version:
ProModel Controls
19 lines • 662 B
HTML
<div *ngFor="let row of Rows; let i = index"
[]="row._top"
[]="row['_rowHeight']"
style="position: absolute;"
(click)="OnCellSelect(row)"
(contextmenu)="OnCellSelect(row)"
[]="IsRowFocused(row)"
class="grid-table-row-count-cell">
{{row._rowNumber}}
<pm-thumb
*ngIf="!Grid.HideRowResize"
[]="'gripper-thumb-ns'"
class="grid-table-row-count-thumb"
[]="'Vertical'"
[]="'Basis'"
[]="Row"
(Resize)="OnRowResize($event, row)"></pm-thumb>
</div>