All Downloads are FREE. Search and download functionalities are using the official Maven repository.

samples.events.radio-changed-event.poc Maven / Gradle / Ivy

widget WidgetWithRadio extends ReactWidget {

    method 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