Question
Disable the collapsible in mobile preview page for Attachment/File Detail
10:05 Mar 10, 2020
Hi Community,
In mobile we can configure the Column Set to disable the collapsible using below property:
collapsible: false
isCollapsed: false
We tried to apply the same for Attachment/File Detail but the above property is not working. Please suggest how we can disable the collapsible in mobile preview page.
Like
1 comments
14:18 Mar 19, 2020
The "collapsible" and "isCollapsed" properties are used for detail as well. Please see the example:
Terrasoft.sdk.RecordPage.configureEmbeddedDetail("Case", "CaseFilesDetail", {
alwaysShowTitle: true,
collapsible: false,
isCollapsed: false,
});
The result - > https://prnt.sc/rizh0k
Show all comments