Official comment

For future reference the request ID is CR-328870
Is there a solution to allow the loading of the property card of the project (for example) to collapse the sections ?
We have many sections and when we deploy the 'more info' it's very long.
We would like to allow the users to open the sections that they need.
Please see attached: http://screencast.com/t/TgbcfaoY
For future reference the request ID is CR-328870
Please sign in to leave a comment.
Did this CR get any traction? I'm interested in this same expanding/collapsing of sections allowing the users to open what they need.
This would be helpful for us as well as a default view option. We have a couple of custom uses of an object where some sections are needed and some are not based on a sub-type of the object.
Any update on this request on the roadmap or even being approved? Please advise. Thanks!
Please add votes to this by clicking the up-tic mark top the left of the request. Thanks.
We will be releasing a "Dynamic Property Cards" feature into controlled availability on Sunday 14th Oct which should solve some of the screen optimization needs here.
Section collapsing did not make this capability as part of the feature yet.
However, it seems it is possible to achieve the same result using custom CSS which you can add into Global Settings, or to the Profile-specific CSS, available via the Properties > Settings of each Profile.
Here's the sample code snippet to achieve this:
#ObjectProperties_content_GroupContent_section3.p-group-content {display:none;}
#ObjectProperties_content_GroupContent_section3.p-group-content.dn {display:block;}
#ObjectProperties_content_GroupContent_section4.p-group-content {display:none;}
#ObjectProperties_content_GroupContent_section4.p-group-content.dn {display:block;}
#ObjectProperties_content_GroupContent_section5.p-group-content {display:none;}
#ObjectProperties_content_GroupContent_section5.p-group-content.dn {display:block;}
#ObjectProperties_content_GroupContent_section6.p-group-content {display:none;}
#ObjectProperties_content_GroupContent_section6.p-group-content.dn {display:block;}
#ObjectProperties_content_GroupContent_section7.p-group-content {display:none;}
#ObjectProperties_content_GroupContent_section7.p-group-content.dn {display:block;}
#ObjectProperties_content_GroupContent_section8.p-group-content {display:none;}
#ObjectProperties_content_GroupContent_section8.p-group-content.dn {display:block;}
#ObjectProperties_content_GroupContent_section9.p-group-content {display:none;}
#ObjectProperties_content_GroupContent_section9.p-group-content.dn {display:block;}
#ObjectProperties_content_GroupContent_section10.p-group-content {display:none;}
#ObjectProperties_content_GroupContent_section10.p-group-content.dn {display:block;}