diff options
author | bobzel <zzzman@gmail.com> | 2022-06-21 14:40:04 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2022-06-21 14:40:04 -0400 |
commit | 0dd3bbfc119d48bd2c32f8e55b7051e3ddc530c3 (patch) | |
tree | d869df5eb544e447d0c0b3f38e5a1b586783bddf /src/client/documents/Documents.ts | |
parent | 3e22a44461095d95062e3b809b525a0a87342ac3 (diff) |
restored experimental templates. fixed (enabled) pointer events on nested column/row views when container is active. got rid of freezeDimensions which wasn't needed and introduced artifacts for views that set it (timeView, GridView)
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 73b756a8d..59391d150 100644 --- a/src/client/documents/Documents.ts +++ b/src/client/documents/Documents.ts @@ -194,6 +194,7 @@ export class DocumentOptions { childLimitHeight?: number; // whether to limit the height of collection children. 0 - means height can be no bigger than width childLayoutTemplate?: Doc; // template for collection to use to render its children (see PresBox layout in tree view) childLayoutString?: string; // template string for collection to use to render its children + childDocumentsActive?: boolean; // whether child documents are active when parent is document active childDontRegisterViews?: boolean; childHideLinkButton?: boolean; // hide link buttons on all children childContextMenuFilters?: List<ScriptField>; |