. Dashboards impl checkpoint

- beginnings of the dashboard configuration wizard (layouts)
  - icons for various layouts (a bit of Photoshop fun)
  - working layouts for single column, 2 column left and right narrow, three column
. Added "immediate" attribute to ActionLink component - same functionality as for standard JSF Command Button
. Fixed Wizard container.jsp to use "immediate=true" on Cancel button

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@3355 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Kevin Roast
2006-07-19 17:03:07 +00:00
parent 177a65f20e
commit e022ced825
2 changed files with 12 additions and 1 deletions

View File

@@ -64,7 +64,7 @@ public class DashboardWizard extends BaseWizardBean
*/
protected String finishImpl(FacesContext context, String outcome) throws Exception
{
return null;
return outcome;
}
/**

View File

@@ -21,3 +21,14 @@
<%@ taglib uri="/WEB-INF/repo.tld" prefix="r" %>
<%@ page import="org.alfresco.web.ui.common.PanelGenerator" %>
<f:verbatim>
<script type="text/javascript">
window.onload = pageLoaded;
function pageLoaded()
{
document.getElementById("wizard:finish-button").disabled = false;
}
</script>
</f:verbatim>