在 smartgwt 中,操作标题的边框或 a 的内容相当容易SectionStackSection
,因为它们呈现单独的 html 元素。
但是,是否也可以在整体上设置边界SectionStackSection
?没有周围的 div,并且该部分没有 nogsetBorder()
方法。
有任何想法吗?
TIA
在 smartgwt 中,操作标题的边框或 a 的内容相当容易SectionStackSection
,因为它们呈现单独的 html 元素。
但是,是否也可以在整体上设置边界SectionStackSection
?没有周围的 div,并且该部分没有 nogsetBorder()
方法。
有任何想法吗?
TIA
您可以使用 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);