Package org.cast.isi

Examples of org.cast.isi.CollapseBoxBehavior


    locsWithMessages = responseService.getPagesWithNotes(ISISession.get().getUser());
   
    WebMarkupContainer tagsBox = new WebMarkupContainer("tagsBox");
    add(tagsBox);
    tagsBox.setVisible(ISIApplication.get().isTagsOn());
    tagsBox.add(new WebMarkupContainer("tagCollapseToggle").add(new CollapseBoxBehavior("onclick", "tagpanel:studenttoc", getPageName())));
    tagsBox.add(new TagCloudTocPanel("tagcloud", getTagLinkBuilder()));
   
    // This is the "Chapter" level
       RepeatingView chapterRepeater = new RepeatingView("chapterRepeater");
       add(chapterRepeater);
View Full Code Here


 
 
  @Override
  protected void onInitialize() {
    super.onInitialize();
    add(new CollapseBoxBehavior("onclick", "support:" + boxSequence, ((ISIBasePage) getPage()).getPageName()));
  }
View Full Code Here

TOP

Related Classes of org.cast.isi.CollapseBoxBehavior

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.