Package net.xoetrope.html

Examples of net.xoetrope.html.XRadioButton


        XMessageBox alert = new XMessageBox( "Event added dynamically to this component." );
    }
       
    public void addRadio() {
        XPanel panel = (XPanel)findComponent( obj, "panel" );
        XRadioButton radio = new XRadioButton( "radio" );
        XLabel radio_txt = new XLabel( "New Radio Button", "radio_txt" );
        panel.add( radio.getHTMLElement() );
        panel.add( radio_txt.getHTMLElement() );
        radio.addEvent( radio.getHTMLElement().getId(), "alert", "ClICk");
    }
View Full Code Here

TOP

Related Classes of net.xoetrope.html.XRadioButton

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.