Disable the collapsible in mobile preview page for Attachment/File Detail

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 0

Like

1 comments

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