
samples.events.radio-changed-event.poc Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of WebSite Show documentation
Show all versions of WebSite Show documentation
Prompto Documentation Web Site POM
The newest version!
widget WidgetWithRadio extends ReactWidget {
getInitialState() {
return { radio: "r1" }
}
method radioChanged(RadioChangedEvent event) {
setState({ radio: event.getSelectedRadio() })
}
Html method render () {
state = getState();
return
Hello 1!
Hello 2!
;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy