novo-elements
Version:
Bullhorn's NOVO Element Repository for Angular 2
14 lines (13 loc) • 724 B
HTML
<novo-table [rows]="selectAll.rows" [columns]="selectAll.columns" [config]="selectAll.config" #table>
<novo-table-actions>
<button theme="secondary" (click)="singleAction()">Click Me!</button>
<novo-dropdown side="right" *ngIf="table.selected.length">
<button theme="primary" icon="collapse" inverse>{{table.selected.length}} Selected</button>
<list>
<item (action)="selectedAction('action 1')">Action 1</item>
<item (action)="selectedAction('action 2')">Action 2</item>
<item (action)="selectedAction('action 3')" disabled="true">Action 3</item>
</list>
</novo-dropdown>
</novo-table-actions>
</novo-table>