在smartgwt中,操纵标题的边框或SectionStackSection
的内容相当容易,因为它们会渲染单独的html元素。
但是,是否也可以在整个SectionStackSection
上设置边框?没有周围的div,并且该节具有setBorder()
方法。
有什么想法吗?
TIA
答案 0 :(得分:1)
您可以使用setAttribute(String property,String value)方法来实现此目的。
SectionStackSection section1 = new SectionStackSection("Blue Pawn");
section1.setExpanded(true);
section1.addItem(new Img("pieces/48/pawn_blue.png", 48, 48));
section1.setAttribute("border", "1px solid red");
sectionStack.addSection(section1);