blob: a3732d7a6c24c54e5dc43bfd5a852fb2e25eef02 [file] [log] [blame]
<?xml version="1.0"?>
<!--
Copyright 2005 The Apache Software Foundation
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
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.
-->
<!DOCTYPE script PUBLIC
"-//Apache Software Foundation//Tapestry Script Specification 3.0//EN"
"http://tapestry.apache.org/dtd/Script_3_0.dtd">
<!--
Creates a script for validating that a field is required and/or has a minimum
field length.
Input symbols:
field, form, validator: As normal for a validation script.
formatMessage: Message displayed if the input is not valid.
requiredMessage: Message to display if the field is required yet blank.
rangeMessage: Message to display if the field is not in the expected range.
formatExpression: Regular expression for the field.
-->
<script>
<input-symbol key="field" class="org.apache.tapestry.valid.ValidField" required="yes"/>
<input-symbol key="form" class="org.apache.tapestry.IForm" required="yes"/>
<input-symbol key="validator" class="org.apache.tapestry.valid.NumberValidator" required="yes"/>
<input-symbol key="formatMessage" class="java.lang.String" required="yes"/>
<input-symbol key="requiredMessage" class="java.lang.String"/>
<input-symbol key="rangeMessage" class="java.lang.String"/>
<let key="function" unique="yes">
validate_${field.name}
</let>
<body>
function ${function}(event)
{
var field = dojo.byId("${field.name}");
var stringValue = field.value;
<if expression="validator.required">
if (stringValue.length == 0)
{
Tapestry.invalid_field(field, "${requiredMessage}");
dojo.event.browser.stopEvent(event);
return;
}
</if>
<if-not expression="validator.required">
if (stringValue.length == 0)
return true;
</if-not>
var value = stringValue * 1;
if (isNaN(value))
{
Tapestry.invalid_field(field, "${formatMessage}");
dojo.event.browser.stopEvent(event);
return;
}
<if expression="validator.integerNumber">
var regex = /\./;
if (stringValue.search(regex) != -1)
{
Tapestry.invalid_field(field, "${formatMessage}");
dojo.event.browser.stopEvent(event);
return;
}
</if>
<if expression="validator.minimum != null">
if (value &lt; ${validator.minimum})
{
Tapestry.invalid_field(field, "${rangeMessage}");
dojo.event.browser.stopEvent(event);
return;
}
</if>
<if expression="validator.maximum != null">
if (value &gt; ${validator.maximum})
{
Tapestry.invalid_field(field, "${rangeMessage}");
dojo.event.browser.stopEvent(event);
return;
}
</if>
}
</body>
<initialization>
Tapestry.onsubmit('${form.name}', ${function});
</initialization>
</script>