Search in sources :

Example 1 with AllItemsSource

use of org.olat.modules.qpool.ui.datasource.AllItemsSource in project OpenOLAT by OpenOLAT.

the class AllQuestionsTreeNode method getController.

@Override
public Controller getController(UserRequest ureq, WindowControl wControl) {
    if (questionsCtrl == null) {
        QuestionItemsSource source = new AllItemsSource(ureq.getIdentity(), ureq.getUserSession().getRoles(), ALL);
        WindowControl swControl = BusinessControlFactory.getInstance().createBusinessWindowControl(ureq, ORES, null, wControl, true);
        questionsCtrl = new QuestionsController(ureq, swControl, stackPanel, source, securityCallback, ALL, true);
    } else {
        questionsCtrl.updateSource();
    }
    return questionsCtrl;
}
Also used : AllItemsSource(org.olat.modules.qpool.ui.datasource.AllItemsSource) QuestionItemsSource(org.olat.modules.qpool.ui.QuestionItemsSource) WindowControl(org.olat.core.gui.control.WindowControl) QuestionsController(org.olat.modules.qpool.ui.QuestionsController)

Example 2 with AllItemsSource

use of org.olat.modules.qpool.ui.datasource.AllItemsSource in project openolat by klemens.

the class AllQuestionsTreeNode method getController.

@Override
public Controller getController(UserRequest ureq, WindowControl wControl) {
    if (questionsCtrl == null) {
        QuestionItemsSource source = new AllItemsSource(ureq.getIdentity(), ureq.getUserSession().getRoles(), ALL);
        WindowControl swControl = BusinessControlFactory.getInstance().createBusinessWindowControl(ureq, ORES, null, wControl, true);
        questionsCtrl = new QuestionsController(ureq, swControl, stackPanel, source, securityCallback, ALL, true);
    } else {
        questionsCtrl.updateSource();
    }
    return questionsCtrl;
}
Also used : AllItemsSource(org.olat.modules.qpool.ui.datasource.AllItemsSource) QuestionItemsSource(org.olat.modules.qpool.ui.QuestionItemsSource) WindowControl(org.olat.core.gui.control.WindowControl) QuestionsController(org.olat.modules.qpool.ui.QuestionsController)

Aggregations

WindowControl (org.olat.core.gui.control.WindowControl)2 QuestionItemsSource (org.olat.modules.qpool.ui.QuestionItemsSource)2 QuestionsController (org.olat.modules.qpool.ui.QuestionsController)2 AllItemsSource (org.olat.modules.qpool.ui.datasource.AllItemsSource)2