nts-ng2-components
Version:
Paquete de componentes para Angular2 desarrollado por NITSNETS.
25 lines (22 loc) • 861 B
HTML
<nts-datagrid-cell
class="select-cell show-hover"
width="0"
*ngIf="box && datagrid.selectable"
[highlight]="true"
>
<nts-checkbox [ntsModel]="selected" (ntsModelChange)="selectedChange.emit($event)"></nts-checkbox>
</nts-datagrid-cell>
<ng-content *ngIf="!deleting"></ng-content>
<nts-datagrid-cell *ngIf="deleting" class="deleting-cell">
<span>Are you sure you want to delete this item?</span>
<nts-button label="Delete" color="error" (click)="delete.emit()"></nts-button>
<nts-button label="Cancel" color="default" (click)="deleting = false"></nts-button>
</nts-datagrid-cell>
<nts-datagrid-cell
class="delete-cell show-hover"
width="0"
*ngIf="box && datagrid.deletable"
[highlight]="true"
>
<nts-button icon="delete" (click)="onDeleteAttempt()"></nts-button>
</nts-datagrid-cell>