. Multi-select capability added to User Sandboxes component

- select/deselect all
 - multi-select actions now possible in a user sandbox
 - added test multi-select action - doesn't do anything except validate that the selected items can be retrieved

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/BRANCHES/WCM-DEV2/root@4334 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Kevin Roast
2006-11-10 16:28:40 +00:00
parent a1b120d6c3
commit 73a73a3264
3 changed files with 201 additions and 52 deletions

View File

@@ -807,6 +807,16 @@ public class AVMBrowseBean implements IContextListener
}
}
public void submitSelected(ActionEvent event)
{
UIActionLink link = (UIActionLink)event.getComponent();
Map<String, String> params = link.getParameterMap();
String store = params.get("store");
String username = params.get("username");
List<AVMNodeDescriptor> selected = this.userSandboxes.getSelectedNodes(username);
}
// ------------------------------------------------------------------------------
// Private helpers