Package org.olat.course.tree

Examples of org.olat.course.tree.InsertTreeModel


    addLoggingResourceable(LoggingResourceable.wrap(moveCopyFrom.getCourseNode()));

    insertTree = new SelectionTree("copy_node_selection", getTranslator());
    insertTree.setFormButtonKey("insertAtSelectedTreepos");
    insertTree.addListener(this);
    insertModel = new InsertTreeModel(course.getEditorTreeModel());
    insertTree.setTreeModel(insertModel);   
   
    VelocityContainer mainVC = createVelocityContainer("moveCopyNode");
   
    if(insertModel.totalNodeCount() > CourseModule.getCourseNodeLimit()){
View Full Code Here


    insertTree = new SelectionTree("insert_new_node_selection", getTranslator());
    insertTree.setFormButtonKey("insertAtSelectedTreepos");
    insertTree.addListener(this);
    ICourse course = CourseFactory.getCourseEditSession(ores.getResourceableId());
    insertModel = new InsertTreeModel(course.getEditorTreeModel());
    insertTree.setTreeModel(insertModel);   
    VelocityContainer insertVC = createVelocityContainer("insertNode");
    insertVC.put("selection", insertTree);
   
    if(insertModel.totalNodeCount() > CourseModule.getCourseNodeLimit()){
View Full Code Here

TOP

Related Classes of org.olat.course.tree.InsertTreeModel

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.