Expand only some of the categorized columns in the viewPanel when you open

I am using a ViewPanel to display a categorized view. This view has 4 columns of categories. There are 3 additional columns that add up.

I want to open this view so that the first 3 categorized columns are used up and the fourth crashes.

Is there any type of SSJS / CSJS that I can add to a view that can do this?

I did not see the ability to expand / collapse a column when opening a view in the properties of the ViewPanel.

I tried using the collapse parameter on the appearance, but that does not affect the Xpage side. I tried to hide the lines with the details, but they still appear.

+3
source share
1

:

<xp:this.data>
    <xp:dominoView var="view1" viewName="NameOfYourView" expandLevel="4" />
</xp:this.data>

EDIT:

, URL: nameOfXPage.xsp? expandLevel = 3

+3

All Articles