Package org.cast.isi.panel

Examples of org.cast.isi.panel.TeacherSubHeaderPanel


    add(new Label("pageTitle", new PropertyModel<String>(this, "pageTitle")));
   
    add(ISIApplication.get().getHeaderPanel("headerPanel", parameters).setOutputMarkupId(true));
    // If teacher, then add a sub header panel
    if (ISISession.get().getUser().getRole().subsumes(Role.TEACHER)) {
      add(new TeacherSubHeaderPanel("teacherSubHeader", parameters));
    } else {
      add(new WebMarkupContainer("teacherSubHeader").setVisible(false));     
    }

    add(ISIApplication.get().getFooterPanel("footerPanel", parameters));
View Full Code Here

TOP

Related Classes of org.cast.isi.panel.TeacherSubHeaderPanel

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.