Package com.gwtextux.client.widgets.window

Examples of com.gwtextux.client.widgets.window.ToastWindow


   * @param header
   * @param message
   */
  public static void showMessage( String title, String message ) {

    ToastWindow tw = new ToastWindow();
    tw.setClosable( false );
    tw.setTitle( title );
    tw.setIconCls( "information" );
    tw.setMessage( message );
    tw.show();
  }
View Full Code Here

TOP

Related Classes of com.gwtextux.client.widgets.window.ToastWindow

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.