Package com.google.code.jqwicket.ui.notifier

Examples of com.google.code.jqwicket.ui.notifier.NotifierWebMarkupContainer


public class NotifierPage extends DemoPage {

  @SuppressWarnings("serial")
  public NotifierPage() {
    final NotifierWebMarkupContainer notifier = new NotifierWebMarkupContainer(
        "notifier1");
    add(notifier);
    add(new AjaxLink<Void>("notifier.open1") {
      @Override
      public void onClick(AjaxRequestTarget target) {
        notifier.create(
            target,
            "Test Notification",
            "This is an example of the default config, and will fade out after five seconds.");
      }
    });
View Full Code Here

TOP

Related Classes of com.google.code.jqwicket.ui.notifier.NotifierWebMarkupContainer

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.