Files
alfresco-community-repo/source/web/jsp/rules/details.jsp
Gavin Cornwell 02cb2ac1e7 - Added error-message-id attribute to dialog and wizard framework
- Added error component to container pages
- Removed error component from each dialog/wizard page
- Fixed problem where dialog or wizard would not work after an error

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@2872 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
2006-05-12 12:40:16 +00:00

121 lines
3.7 KiB
Plaintext

<%--
Copyright (C) 2005 Alfresco, Inc.
Licensed under the Mozilla Public License version 1.1
with a permitted attribution clause. You may obtain a
copy of the License at
http://www.alfresco.org/legal/license.txt
Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
either express or implied. See the License for the specific
language governing permissions and limitations under the
License.
--%>
<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h" %>
<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %>
<%@ taglib uri="/WEB-INF/alfresco.tld" prefix="a" %>
<%@ taglib uri="/WEB-INF/repo.tld" prefix="r" %>
<f:verbatim>
<script type="text/javascript">
function checkButtonState()
{
if (document.getElementById("wizard:wizard-body:title").value.length == 0)
{
document.getElementById("wizard:next-button").disabled = true;
document.getElementById("wizard:finish-button").disabled = true;
}
else
{
document.getElementById("wizard:next-button").disabled = false;
document.getElementById("wizard:finish-button").disabled = false;
}
}
</script>
<table cellpadding="2" cellspacing="2" border="0" width="100%">
<tr>
<td>
</f:verbatim>
<h:outputText value="#{msg.type}:"/>
<f:verbatim>
</td>
<td width="90%">
</f:verbatim>
<%--
disabled="#{WizardManager.bean.inEditMode}"
--%>
<h:selectOneMenu id="rule-type" value="#{WizardManager.bean.type}">
<f:selectItems value="#{WizardManager.bean.types}" />
</h:selectOneMenu>
<f:verbatim>
</td>
</tr>
<tr>
<td>
</f:verbatim>
<h:outputText value="#{msg.title}:"/>
<f:verbatim>
</td>
<td>
</f:verbatim>
<h:inputText id="title" value="#{WizardManager.bean.title}" size="35" maxlength="1024"
onkeyup="checkButtonState();" /><f:verbatim>&nbsp;*
</td>
</tr>
<tr>
<td>
</f:verbatim>
<h:outputText value="#{msg.description}:"/>
<f:verbatim>
</td>
<td>
</f:verbatim>
<h:inputText value="#{WizardManager.bean.description}" size="35" maxlength="1024" />
<f:verbatim>
</td>
</tr>
<tr><td colspan="2" class="paddingRow"></td></tr>
<tr>
<td colspan="2" class="wizardSectionHeading">
</f:verbatim>
<h:outputText value="#{msg.other_options}" />
<f:verbatim>
</td>
</tr>
<tr>
<td colspan="2">
</f:verbatim>
<h:panelGrid columns="2">
<h:selectBooleanCheckbox value="#{WizardManager.bean.applyToSubSpaces}" />
<h:outputText value="#{msg.apply_to_sub_spaces}" />
</h:panelGrid>
<f:verbatim>
</td>
</tr>
<tr>
<td colspan="2">
</f:verbatim>
<h:panelGrid columns="2">
<h:selectBooleanCheckbox value="#{WizardManager.bean.runInBackground}" />
<h:outputText value="#{msg.run_in_background}" />
</h:panelGrid>
<f:verbatim>
</td>
</tr>
<tr>
<td colspan="2">
<div id="rule-info" style="padding-left: 26px;">
</f:verbatim>
<h:graphicImage alt="" value="/images/icons/info_icon.gif" style="vertical-align: middle;" />
<h:outputText value="&nbsp;" escape="false" />
<h:outputText value="#{msg.rule_background_info}" />
<f:verbatim>
</div>
</td>
</tr>
</table>
</f:verbatim>