use of com.gwtmobile.ui.client.widgets.RadioButton in project GwtMobile by dennisjzh.
the class RadioButtonPage method onRadioGroup1SelectionChanged.
@UiHandler("radiogroup1")
void onRadioGroup1SelectionChanged(SelectionChangedEvent e) {
RadioButton radio = (RadioButton) radiogroup1.getWidget(e.getSelection());
Utils.Console("group1 " + e.getSelection() + " " + radio.getText());
}
use of com.gwtmobile.ui.client.widgets.RadioButton in project GwtMobile by dennisjzh.
the class RadioButtonPage method onRadioGroup2SelectionChanged.
@UiHandler("radiogroup2")
void onRadioGroup2SelectionChanged(SelectionChangedEvent e) {
RadioButton radio = (RadioButton) radiogroup2.getWidget(e.getSelection());
Utils.Console("group2 " + e.getSelection() + " " + radio.getText());
}
Aggregations