Search code examples
sencha-touchsencha-touch-2

Sencha Touch - Modal panel height to auto


Is there a way to tell Sencha to resize a modal panel's height to wrap the elements rather than giving it a specific height ?


Solution

  • This can be done if its config property 'scrollable' is set to false.And using the following css code

    .<yourPanelClass> .x-scroll-scroller,.<yourPanelClass> .x-scroll-container{
    position:relative;
    }