mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
- WCM-351 fixes to select workflow screen on IE (weird onchange behavior) - WCM-468 fixes to remove rendering engine - doing the jsp 2.0 thing - WCM-427 fix to encoding issue with parseXMLDocuements - fix for remove rendering engine templates in create form (wasn't clearing the list in init) git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@5630 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
76 lines
3.3 KiB
Plaintext
76 lines
3.3 KiB
Plaintext
<!--
|
|
* Copyright (C) 2005-2007 Alfresco Software Limited.
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public License
|
|
* as published by the Free Software Foundation; either version 2
|
|
* of the License, or (at your option) any later version.
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* As a special exception to the terms and conditions of version 2.0 of
|
|
* the GPL, you may redistribute this Program in connection with Free/Libre
|
|
* and Open Source Software ("FLOSS") applications as described in Alfresco's
|
|
* FLOSS exception. You should have recieved a copy of the text describing
|
|
* the FLOSS exception, and it is also available here:
|
|
* http://www.alfresco.com/legal/licensing
|
|
-->
|
|
<jsp:root version="1.2"
|
|
xmlns:jsp="http://java.sun.com/JSP/Page"
|
|
xmlns:c="http://java.sun.com/jsp/jstl/core"
|
|
xmlns:a="urn:jsptld:/WEB-INF/alfresco.tld"
|
|
xmlns:f="http://java.sun.com/jsf/core"
|
|
xmlns:h="http://java.sun.com/jsf/html">
|
|
|
|
<jsp:output doctype-root-element="html"
|
|
doctype-public="-//W3C//DTD XHTML 1.0 Transitional//EN"
|
|
doctype-system="http://www.w3c.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"/>
|
|
|
|
<jsp:directive.page language="java" buffer="32kb" contentType="text/html; charset=UTF-8"/>
|
|
<jsp:directive.page isELIgnored="false"/>
|
|
|
|
<script type="text/javascript">
|
|
function apply_default_workflow_changed(value)
|
|
{
|
|
value = String(value) == 'true';
|
|
document.getElementById("wizard:wizard-body:sdw-pg-2").style.display = value ? "block" : "none";
|
|
}
|
|
</script>
|
|
<h:panelGroup id="sdw-pg-1">
|
|
<h:outputText id="sdw-question"
|
|
value="#{msg.create_form_select_default_workflow_apply_default_workflow}"
|
|
escape="false" />
|
|
|
|
<h:selectOneRadio id="sdw-apply-default-workflow-select-one"
|
|
required="false"
|
|
onclick="apply_default_workflow_changed(this.value)"
|
|
value="#{WizardManager.bean.applyDefaultWorkflow}">
|
|
<f:selectItem itemLabel="#{msg.yes}" itemValue="#{true}"/>
|
|
<f:selectItem itemLabel="#{msg.no_not_now}" itemValue="#{false}"/>
|
|
</h:selectOneRadio>
|
|
|
|
<f:verbatim><div style="margin-top:10px"> </div></f:verbatim>
|
|
<h:panelGroup id="sdw-pg-2" style="#{WizardManager.bean.applyDefaultWorkflow?'display:block':'display:none'}">
|
|
<h:outputText id="sdw-select-workflow"
|
|
value="#{msg.create_form_select_default_workflow_select_workflow}:"
|
|
escape="false" />
|
|
<h:panelGroup id="workflow-list-div"
|
|
style="margin:5px 0px;height:144px;*height:148px;width:100%;overflow:auto;display:block;"
|
|
styleClass="selectListTable">
|
|
<a:selectList id="workflow-list"
|
|
multiSelect="false"
|
|
style="width:100%"
|
|
itemStyleClass="selectListItem"
|
|
value="#{WizardManager.bean.defaultWorkflowName}">
|
|
<a:listItems value="#{WizardManager.bean.defaultWorkflowChoices}" />
|
|
</a:selectList>
|
|
</h:panelGroup>
|
|
</h:panelGroup>
|
|
</h:panelGroup>
|
|
</jsp:root>
|