Package net.xoetrope.html

Examples of net.xoetrope.html.XButton.addEvent()


   
    public void addButton() {
        XPanel panel = (XPanel)findComponent( obj, "panel" );
        XButton button = new XButton( "New Button", "button" );
        panel.add( button.getHTMLElement() );
        button.addEvent( button.getHTMLElement().getId(), "alert", "click" );
    }       
   
    public void alert() {       
        XMessageBox alert = new XMessageBox( "Event added dynamically to this component." );
    }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.