#340 Empty content template and context menu for datatable

This commit is contained in:
Denys Vuika
2016-07-05 12:37:07 +01:00
parent e3924fdaa3
commit 236926c1ca
9 changed files with 132 additions and 19 deletions

View File

@@ -26,17 +26,20 @@ import { ContextMenuService } from './../services/context-menu.service';
})
export class ContextMenuDirective {
@Input('context-menu')
links;
links: any[];
constructor(
private _contextMenuService: ContextMenuService) {}
onShowContextMenu(event?: MouseEvent) {
if (this._contextMenuService) {
this._contextMenuService.show.next({event: event, obj: this.links});
}
if (event) {
event.preventDefault();
}
if (this.links && this.links.length > 0) {
if (this._contextMenuService) {
this._contextMenuService.show.next({event: event, obj: this.links});
}
}
}
}