7

Asking and answering my own question thanks to a post on another topic:

I have created a cardboard in a custom Rally app. The list of items within the cardboard is longer than the screen will show, but there is no scroll bar in the window or the container. I've tried adding autoScroll:true to first level properties of the cardboard and to both the storeConfig and listConfig of the cardboard. Nothing works. WTH?

Dinkheller
  • 4,631
  • 5
  • 39
  • 67
Anders Martinson
  • 353
  • 1
  • 2
  • 9

1 Answers1

0

Here is the answer from Anders Martinson

You have to add autoScroll:true to the app definition:

Ext.define('CustomApp', {
    extend: 'Rally.app.App',
    componentCls: 'app',
    autoScroll: true,
    //...
}

Once you do that, you're set.

Dinkheller
  • 4,631
  • 5
  • 39
  • 67