diff options
author | bobzel <zzzman@gmail.com> | 2021-04-06 14:39:42 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2021-04-06 14:39:42 -0400 |
commit | 3389e8231362e48fc0df522db1317b87c71969c6 (patch) | |
tree | 16a269af771d9da0ddd7fde3e60119641bfd3baa /src/client/documents/Documents.ts | |
parent | 46193ae586c28d5309cb0d6fa724846bb8520f20 (diff) |
fixed initial treeViewOpen state for non-checkbox filters.
Diffstat (limited to 'src/client/documents/Documents.ts')
-rw-r--r-- | src/client/documents/Documents.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/client/documents/Documents.ts b/src/client/documents/Documents.ts index adebb9b1c..65dd826ef 100644 --- a/src/client/documents/Documents.ts +++ b/src/client/documents/Documents.ts @@ -248,6 +248,7 @@ export class DocumentOptions { treeViewHideHeaderFields?: boolean; // whether to hide the drop down options for tree view items. treeViewShowClearButton?: boolean; // whether a clear button should be displayed treeViewOpenIsTransient?: boolean; // ignores the treeViewOpen Doc flag, allowing a treeViewItem's expand/collapse state to be independent of other views of the same document in the same or any other tree view + _treeViewOpen?: boolean; // whether this document is expanded in a tree view (note: need _ and regular versions since this can be specified for both proto and layout docs) treeViewOpen?: boolean; // whether this document is expanded in a tree view treeViewExpandedView?: string; // which field/thing is displayed when this item is opened in tree view treeViewExpandedViewLock?: boolean; // whether the expanded view can be changed |