mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-12 17:04:57 +00:00
58 lines
1.2 KiB
Markdown
58 lines
1.2 KiB
Markdown
---
|
|
Title: Context Menu directive
|
|
Added: v2.0.0
|
|
Status: Deprecated
|
|
Last reviewed: 2018-11-20
|
|
---
|
|
|
|
# Context Menu Directive
|
|
|
|
Adds a context menu to a component.
|
|
|
|
## Basic Usage
|
|
|
|
```html
|
|
<my-component [adf-context-menu]="menuItems"></my-component>
|
|
<adf-context-menu-holder></context-menu-holder>
|
|
```
|
|
|
|
```ts
|
|
@Component({
|
|
selector: 'my-component'
|
|
})
|
|
export class MyComponent implements OnInit {
|
|
|
|
menuItems: any[];
|
|
|
|
constructor() {
|
|
this.menuItems = [
|
|
{ title: 'Item 1', subject: new Subject() },
|
|
{ title: 'Item 2', subject: new Subject() },
|
|
{ title: 'Item 3', subject: new Subject() }
|
|
];
|
|
}
|
|
|
|
ngOnInit() {
|
|
this.menuItems.forEach(l => l.subject.subscribe(item => this.commandCallback(item)));
|
|
}
|
|
|
|
commandCallback(item) {
|
|
alert(`Executing ${item.title} command.`);
|
|
}
|
|
|
|
}
|
|
```
|
|
|
|
## Class members
|
|
|
|
### Properties
|
|
|
|
| Name | Type | Default value | Description |
|
|
| ---- | ---- | ------------- | ----------- |
|
|
| enabled | `boolean` | false | Is the menu enabled? |
|
|
| links | `any[]` | | Items for the menu. |
|
|
|
|
## See Also
|
|
|
|
- [Document List component](../../content-services/components/document-list.component.md)
|