Examples of newModalDialogId()


Examples of org.projectforge.web.wicket.AbstractSecuredPage.newModalDialogId()

  }

  private void addBookmarkDialog()
  {
    final AbstractSecuredPage parentPage = (AbstractSecuredPage) getPage();
    bookmarkDialog = new BookmarkDialog(parentPage.newModalDialogId());
    bookmarkDialog.setOutputMarkupId(true);
    parentPage.add(bookmarkDialog);
    bookmarkDialog.init();
  }
View Full Code Here

Examples of org.projectforge.web.wicket.AbstractSecuredPage.newModalDialogId()

  @Override
  protected void onInitialize()
  {
    super.onInitialize();
    final AbstractSecuredPage parentPage = (AbstractSecuredPage) getPage();
    recurrenceChangeDialog = new RecurrenceChangeDialog(parentPage.newModalDialogId(), new ResourceModel(
        "plugins.teamcal.event.recurrence.change.title"));
    parentPage.add(recurrenceChangeDialog);
    recurrenceChangeDialog.init();
  }
View Full Code Here

Examples of org.projectforge.web.wicket.AbstractSecuredPage.newModalDialogId()

  protected void onInitialize()
  {
    super.onInitialize();
    if (showModalDialog == true && getPage() != null && getPage() instanceof AbstractSecuredPage) {
      final AbstractSecuredPage parentPage = (AbstractSecuredPage) getPage();
      modalDialog = new ModalDialog(parentPage.newModalDialogId()) {
        @Override
        public void init()
        {
          setTitle(getString("changes"));
          init(new Form<String>(getFormId()));
View Full Code Here

Examples of org.projectforge.web.wicket.AbstractSecuredPage.newModalDialogId()

    });
    this.removeFileSelection.setOutputMarkupPlaceholderTag(true);
    if (fs != null) {
      fs.add(this);
      final AbstractSecuredPage parentPage = (AbstractSecuredPage) getPage();
      deleteExistingFileDialog = new ModalQuestionDialog(parentPage.newModalDialogId(), new ResourceModel(
          "file.panel.deleteExistingFile.heading"), new ResourceModel("file.panel.deleteExistingFile.question")) {
        /**
         * @see org.projectforge.web.dialog.ModalQuestionDialog#onCloseButtonSubmit(org.apache.wicket.ajax.AjaxRequestTarget)
         */
        @Override
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.