diff options
author | bobzel <zzzman@gmail.com> | 2021-03-30 15:34:00 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2021-03-30 15:34:00 -0400 |
commit | b14d30c0a3dee908d7a288f9894e5fff23af3652 (patch) | |
tree | 79f1756fa928fa7a58d68bd568a380d54bb20daf /src/client/documents/Documents.ts | |
parent | 6e7b3b9ea87a622b7ec8b416b6012d0905ede8ae (diff) |
more treeView cleanup. Fixes to linkBox to allow selection properly. fixes to linkAnchorBox.
Diffstat (limited to 'src/client/documents/Documents.ts')
-rw-r--r-- | src/client/documents/Documents.ts | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/src/client/documents/Documents.ts b/src/client/documents/Documents.ts index 88d5cd61f..edd99110c 100644 --- a/src/client/documents/Documents.ts +++ b/src/client/documents/Documents.ts @@ -367,13 +367,10 @@ export namespace Docs { [DocumentType.LINK, { layout: { view: LinkBox, dataField: defaultDataKey }, options: { - childDontRegisterViews: true, _isLinkButton: true, treeViewHideTitle: true, - treeViewOpen: true, _height: 150, description: "", + childDontRegisterViews: true, _isLinkButton: true, _height: 150, description: "", backgroundColor: "lightblue", // lightblue is default color for linking dot and link documents text comment area - treeViewExpandedView: "fields", _removeDropProperties: new List(["_layerTags", "isLinkButton"]), links: ComputedField.MakeFunction("links(self)") as any, - linkBoxExcludedKeys: new List(["treeViewExpandedView", "aliases", "treeViewHideTitle", "_removeDropProperties", - "linkBoxExcludedKeys", "treeViewOpen", "aliasNumber", "isPrototype", "creationDate", "author"]) + _removeDropProperties: new List(["_layerTags", "isLinkButton"]), } }], [DocumentType.LINKDB, { |