Jump to content

How disable collapsibleRows Pivotgrid? Property CollapsibleRows and CollabsibleColumnts not work


ReaderF

Recommended Posts

Hi,

How disable collapsibleRows Pivotgrid?

Unibdgrid has property CollapsibleRows and CollabsibleColumnts but thiis is not work

My unigui version is 1534..

I try like this but not work

on create form and onready form and onshow events not work

  UniDBPivotGrid1.JSInterface.JSConfig('collapsibleRows', ['false']);
  UniDBPivotGrid1.JSInterface.JSConfig('collapsibleColumns',['false']);

 

Link to comment
Share on other sites

nobody knows?

This example shows how disable

https://examples.sencha.com/extjs/7.0.0/examples/kitchensink/?classic#collapsible-pivot-grid

But I can;t use it for Unigui

 // set to "false" to make groups on rows uncollapsible
        collapsibleRows: false,
        // set to "none" to disable subtotals for groups on rows
        rowSubTotalsPosition: 'none',
        // set to "false" to make groups on columns uncollapsible
        collapsibleColumns: false,
        // set to "none" to disable subtotals for groups on columns
        colSubTotalsPosition: 'none',

        // Set layout type to "tabular". If this config is missing then the
        // default layout is "outline"
        viewLayoutType: 'tabular',
Link to comment
Share on other sites

28 minutes ago, ReaderF said:

nobody knows?

This example shows how disable

https://examples.sencha.com/extjs/7.0.0/examples/kitchensink/?classic#collapsible-pivot-grid

But I can;t use it for Unigui




 // set to "false" to make groups on rows uncollapsible
        collapsibleRows: false,
        // set to "none" to disable subtotals for groups on rows
        rowSubTotalsPosition: 'none',
        // set to "false" to make groups on columns uncollapsible
        collapsibleColumns: false,
        // set to "none" to disable subtotals for groups on columns
        colSubTotalsPosition: 'none',

        // Set layout type to "tabular". If this config is missing then the
        // default layout is "outline"
        viewLayoutType: 'tabular',

 

Hi

Are you using trial version?

Link to comment
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
×
×
  • Create New...