I have a ButtonGroup which works with standard vaadin buttons, but I need to use the NativeButton class which inherits Button. The problem is if I use NativeButton the buttongroup isn't rendered.
Working:
Button b = new Button();
buttonGroup.addComponent(b);
Not working:
Button b = new NativeButton();
buttonGroup.addComponent(b);
Any idea how can I make ButtonGroup work with NativeButton?
Vaadin version: 7.1.1