Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    SectionStackSection Header Height

    I need to increase the header height of the SectionStackSection. When I follow the bellow approach the page doesnt load. I think it gives a null exception.

    SectionStackSection sectionStackSection = new SectionStackSection();
    sectionStackSection.getSectionHeader().setHeight(40);

    please advise a way to increate the header height.

    #2
    Per docs, the section header is not created until you add the section to the SectionStack and draw the stack. At that point, your approach would work.

    However, if you intended to change the height of all section, you instead want to this on the SectionStack via changeAutoChildDefaults, or for all sections in the whole application, then via the skinning system.

    Comment

    Working...
    X