core/action-bar/action-bar-item.component.ts
A
```html
* <c8y-action-bar-item [placement]="'right'">
* <button class="btn btn-link" (click)="addRandom()"><i class="fa fa-plus"></i> Add random</button>
* </c8y-action-bar-item>
* ```
selector | c8y-action-bar-item |
templateUrl | ./action-bar-item.component.html |
Inputs |
itemClass
|
Adds additional classes to the item.
Default value : |
placement
|
Where the item should be shown. Use "more" to place it in a dropdown on the right.
Type :
Default value : |
priority
|
Priority for sorting the list. Higher priority means an earlier position in the list.
Type :
Default value : |
<ng-template #template>
<li class="{{itemClass}}">
<ng-content></ng-content>
</li>
</ng-template>