Zicrael / ngx-tree-dnd

Angular 7 support, data sortable draggable smart tree.
https://ngx-tree-dnd.stackblitz.io
MIT License
39 stars 11 forks source link

How to add more fields to TreeModel interface #55

Open gurelsoycaner opened 3 years ago

gurelsoycaner commented 3 years ago

Hı,

How can I possibly add more fields to TreeModel interface:-

export interface TreeModel { name: string; id: number; code: string; translateId: string; options?: TreeItemOptions; childrens: TreeModel[]; // childrens list }

and also should show in the view, or maybe add beforeAddItemEvent that can be bind to, by so doing the developer can raise maybe a dialog modal form for data entry for the selected ITEM-ID.

please help.

Thanks in advance.