Package org.cast.cwm.data.component

Examples of org.cast.cwm.data.component.UserChoice


    // Student Chooser
    IModel<User> studentModel = ISISession.get().getStudentModel();
    if (studentModel == null) {
      studentModel = new HibernateObjectModel<User>(User.class);
    }
    studentChoice = new UserChoice("studentChoice", studentModel, getUserListModel());
    if (studentChoice.getModelObject() == null) { // If session did not have a student or student was not in the session's period, reset session's student
      ISISession.get().setStudentModel(null);
    }
    studentChoice.setOutputMarkupId(true);
   
View Full Code Here

TOP

Related Classes of org.cast.cwm.data.component.UserChoice

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.