I am trying to use ng2-smart-table, I do not know how to associate the plus button (addButtonContent) with some data about the creation of the function. Now it just opens for me to add data. also how to do it for the edit button. My code is:
settings = { add: { addButtonContent: '<i class="ion-ios-plus-outline"></i>', //how to call some function to this one createButtonContent: '<i class="ion-checkmark"></i>', cancelButtonContent: '<i class="ion-close"></i>', }, edit: { editButtonContent: '<i class="ion-edit"></i>', saveButtonContent: '<i class="ion-checkmark"></i>', cancelButtonContent: '<i class="ion-close"></i>', }, delete: { deleteButtonContent: '<i class="ion-trash-a"></i>', confirmDelete: true },
and my template:
<ba-card title="Basic Example" baCardClass="with-scroll"> <div class="form-group"> <input #search type="search" class="form-control form-control-lg" placeholder="Search..." (keyup)="onSearch(search.value)"> </div> <ng2-smart-table [settings]="settings" [source]="source" (deleteConfirm)="onDeleteConfirm($event)"></ng2-smart-table> </ba-card>
source share