我有一个ButtonGroup,它可以使用标准的vaadin按钮,但是我需要使用继承Button的NativeButton类。问题是,如果我使用NativeButton,按钮组就不会呈现。
工作:
Button b = new Button();
buttonGroup.addComponent(b);不起作用:
Button b = new NativeButton();
buttonGroup.addComponent(b);我知道如何让ButtonGroup与NativeButton一起工作吗?
Vaadin版本: 7.1.1
发布于 2013-10-31 09:23:10
https://stackoverflow.com/questions/19682514
复制相似问题