mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-22 07:53:39 +01:00
Get tree working in projectmanager
This commit is contained in:
parent
a076aba728
commit
79bcabc888
@ -594,8 +594,13 @@ export class Et2Tree extends Et2WidgetWithSelectMixin(LitElement)
|
||||
?lazy=${selectOption.item?.length === 0 && selectOption.child}
|
||||
?focused=${selectOption.focused || nothing}
|
||||
@sl-lazy-load=${(event) => {
|
||||
// No need for this to bubble up, we'll handle it (otherwise the parent leaf will load too)
|
||||
event.stopPropagation();
|
||||
|
||||
this.handleLazyLoading(selectOption).then((result) => {
|
||||
this.getNode(selectOption.id).item = [...result.item]
|
||||
// TODO: We already have the right option in context. Look into this.getNode(), find out why it's there. It doesn't do a deep search.
|
||||
const parentNode = selectOption ?? this.getNode(selectOption.id) ?? this.optionSearch(selectOption.id, this._selectOptions, 'item');
|
||||
parentNode.item = [...result.item]
|
||||
this.requestUpdate("_selectOptions")
|
||||
})
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user