Package org.projectforge.web.dialog

Examples of org.projectforge.web.dialog.ModalMessageDialog


   * @see org.apache.wicket.Component#onInitialize()
   */
  @Override
  protected void onInitialize()
  {
    errorDialog = new ModalMessageDialog(parentPage.newModalDialogId(), new ResourceModel("plugins.teamcal.import.ics.error"));
    errorDialog.setType(DivType.ALERT_ERROR);
    parentPage.add(errorDialog);
    errorDialog.init();
    super.onInitialize();
  }
View Full Code Here

TOP

Related Classes of org.projectforge.web.dialog.ModalMessageDialog

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.