package org.sakaiproject.delegatedaccess.tool.pages; import javax.swing.tree.DefaultMutableTreeNode; import javax.swing.tree.TreeNode; import org.apache.wicket.ajax.AjaxRequestTarget; import org.apache.wicket.ajax.markup.html.AjaxLink; import org.apache.wicket.markup.html.WebMarkupContainer; import org.apache.wicket.markup.html.basic.Label; import org.apache.wicket.markup.html.panel.Panel; import org.apache.wicket.model.IModel; import org.apache.wicket.model.PropertyModel; import org.apache.wicket.model.StringResourceModel; import org.sakaiproject.delegatedaccess.model.NodeModel; import org.sakaiproject.delegatedaccess.util.DelegatedAccessConstants; public class EditablePanelAdvancedOptions extends Panel{ private NodeModel nodeModel; private TreeNode node; private boolean loadedFlag = false; public EditablePanelAdvancedOptions(String id, IModel inputModel, final NodeModel nodeModel, final TreeNode node, final int userType){ super(id); this.nodeModel = nodeModel; this.node = node; final WebMarkupContainer advancedOptionsSpan = new WebMarkupContainer("advancedOptionsSpan"); advancedOptionsSpan.setOutputMarkupId(true); final String editableSpanId = advancedOptionsSpan.getMarkupId(); add(advancedOptionsSpan); AjaxLink<Void> saveEditableSpanLink = new AjaxLink<Void>("saveEditableSpanLink") { private static final long serialVersionUID = 1L; @Override public void onClick(AjaxRequestTarget target) { target.appendJavascript("document.getElementById('" + editableSpanId + "').style.display='none';"); //In order for the models to refresh, you have to call "expand" or "collapse" then "updateTree", //since I don't want to expand or collapse, I just call whichever one the node is already //Refreshing the tree will update all the models and information (like role) will be generated onClick if(((BaseTreePage)target.getPage()).getTree().getTreeState().isNodeExpanded(node)){ ((BaseTreePage)target.getPage()).getTree().getTreeState().expandNode(node); }else{ ((BaseTreePage)target.getPage()).getTree().getTreeState().collapseNode(node); } ((BaseTreePage)target.getPage()).getTree().updateTree(target); } }; advancedOptionsSpan.add(saveEditableSpanLink); Label editableSpanLabel = new Label("editableNodeTitle", nodeModel.getNode().title); advancedOptionsSpan.add(editableSpanLabel); AjaxLink<Void> restrictToolsLink = new AjaxLink<Void>("advancedOptionsLink"){ private static final long serialVersionUID = 1L; @Override public void onClick(AjaxRequestTarget target) { target.appendJavascript("document.getElementById('" + editableSpanId + "').style.display='';"); } }; add(restrictToolsLink); Label advancedOptionsSpanLabel = new Label("advancedOptionsSpan", new StringResourceModel("advanced", null)); restrictToolsLink.add(advancedOptionsSpanLabel); Label advnacedOptionsTitle = new Label("advnacedOptionsTitle", new StringResourceModel("advancedOptionsTitle", null)); advancedOptionsSpan.add(advnacedOptionsTitle); Label advancedOptionsInstructions = new Label("advancedOptionsInstructions", new StringResourceModel("advancedOptionsDesc", null)); advancedOptionsSpan.add(advancedOptionsInstructions); advancedOptionsSpan.add(new EditablePanelCheckbox("editablePanelCheckbox", new PropertyModel(node, "userObject.shoppingPeriodRevokeInstructorEditable"), (NodeModel) ((DefaultMutableTreeNode) node).getUserObject(), node, DelegatedAccessConstants.TYPE_ADVANCED_OPT)); advancedOptionsSpan.add(new EditablePanelCheckbox("revokePublicOptCheckbox", new PropertyModel(node, "userObject.shoppingPeriodRevokeInstructorPublicOpt"), (NodeModel) ((DefaultMutableTreeNode) node).getUserObject(), node, DelegatedAccessConstants.TYPE_ADVANCED_OPT)); } }