Examples of StepsMainRunController


Examples of org.olat.core.gui.control.generic.wizard.StepsMainRunController

            // signal correct completion and tell if changes were made or not.
            return hasChanges ? StepsMainRunController.DONE_MODIFIED : StepsMainRunController.DONE_UNCHANGED;
          }
        };

        publishStepsController = new StepsMainRunController(ureq, getWindowControl(), start, finish, null, translate("publish.wizard.title") );
        listenTo(publishStepsController);
        getWindowControl().pushAsModalDialog(publishStepsController.getInitialComponent());
         
      } else if (event.getCommand().equals(CMD_COURSEPREVIEW)) {
        previewController = new PreviewConfigController(ureq, getWindowControl(), course);
View Full Code Here

Examples of org.olat.core.gui.control.generic.wizard.StepsMainRunController

              // signal correct completion and tell if changes were made or not.
              return hasChanges ? StepsMainRunController.DONE_MODIFIED : StepsMainRunController.DONE_UNCHANGED;
            }
          };

          userBulkChangeStepsController = new StepsMainRunController(ureq, getWindowControl(), start, finish, null,
              translate("bulkChange.title"));
          listenTo(userBulkChangeStepsController);
          getWindowControl().pushAsModalDialog(userBulkChangeStepsController.getInitialComponent());

        } else if (tmse.getAction().equals(CMD_MAIL)) {
View Full Code Here

Examples of org.olat.core.gui.control.generic.wizard.StepsMainRunController

        // signal correct completion and tell if changes were made or not.
        return hasChanges ? StepsMainRunController.DONE_MODIFIED : StepsMainRunController.DONE_UNCHANGED;
      }
    };

    importStepsController = new StepsMainRunController(ureq, getWindowControl(), start, finish, null, translate("title"));
    listenTo(importStepsController);
      getWindowControl().pushAsModalDialog(importStepsController.getInitialComponent());
    }
  }
View Full Code Here

Examples of org.olat.core.gui.control.generic.wizard.StepsMainRunController

            return Step.NOSTEP;
          }
        }

      };
      smrc = new StepsMainRunController(ureq, getWindowControl(), startStep, finishCallback,null, translate("wizard.title"));
      listenTo(smrc);
      getWindowControl().pushAsModalDialog(smrc.getInitialComponent());
    }
  }
View Full Code Here

Examples of org.olat.core.gui.control.generic.wizard.StepsMainRunController

              }
              // otherwhise return without deleting anything
            }

          };
          deleteStepController = new StepsMainRunController(ureq, getWindowControl(), start, finishCallback, null,
              translate("admin.deleteUser.title"));
          listenTo(deleteStepController);
          getWindowControl().pushAsModalDialog(deleteStepController.getInitialComponent());
        }
        else {
View Full Code Here

Examples of org.olat.core.gui.control.generic.wizard.StepsMainRunController

          // finishing
          return Step.NOSTEP;
        }

      };
      smrc = new StepsMainRunController(ureq, getWindowControl(), start, finishCallback, null, "A Workflow");
      listenTo(smrc);
      getWindowControl().pushAsModalDialog(smrc.getInitialComponent());

    }
  }
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.