Files
alfresco-community-repo/source/web/jsp/rules/details.jsp
2006-05-02 10:44:51 +00:00

127 lines
3.9 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>
</f:verbatim>
<%-- TODO: Move this to the container page and add error-message-id attribute to dialog config --%>
<a:errors message="#{msg.error_wizard}" styleClass="errorMessage" />
<f:verbatim>
<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>