Announcement

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

    Missing API(?): SectionStackSection.setDefaultProperties(SectionStackSection sss)

    Hi Isomorphic,

    SectionStackSection has no SectionStackSection.setDefaultProperties(SectionStackSection sectionStackSectionProperties).

    I suppose this is not on purpose. You could use it e.g. for
    Code:
    SectionStackSection sss = new SectionStackSection() {
    	{
    		setExpanded(true);
    	}
    };
    SectionStackSection.setDefaultProperties(sss);
    Best regards,
    Blama

    #2
    All Canvas and FormItem subclasses have a setDefaultProperties(), but SectionStackSection is neither of these.

    We currently have no plans to add this API - it would be a very different implementation, and the use cases do not seem compelling.

    But if it's extremely valuable in your application, you could always sponsor, or sponsor a different API that more directly accomplishes what you want.

    Comment

    Working...
    X