文档的输入掩码
我知道我可以通过添加 inputmaskvalidator 标记来验证输入字段。我读了文档文档:
掩码字符串:
:数字字符
- & :所有字符
- A:仅限字母数字字符
- ? : 仅限字母字符
- U:仅限大写字母字符
- L:仅限小写字母字符
示例:日期掩码##/##/## 允许 输入日期 12/24/95 使用其中之一 作为文字的掩码字符 掩码字符串的成员,放置一个 前面的双斜线 (\) 性格。
假设我想接受仅双精度,将其作为双精度存储在内容服务器中。输入掩码值必须是多少?
类似的事情?
<dmf:inputmaskvalidator inputmask="#.#" controltovalidate="my_double" name="my_double_validator"/>
或者
<dmf:inputmaskvalidator inputmask="##.##" controltovalidate="my_double" name="my_double_validator"/>
I know that I can validate an input field by adding a inputmaskvalidator tag. I read the documentum doc :
The mask character string:
: numeric characters
- & : all characters
- A : alphanumeric characters only
- ? : alphabetic characters only
- U : uppercase alphabetic characters only
- L : lowercase alphabetic characters only
Example: date mask ##/##/## permits
the input date 12/24/95 To use one of
the mask characters as a literal
member of the mask string, place a
double slash (\) preceding the
character.
Let's guess I want to accept double only to store it as a double in the content server. What must be the inputmask value?
Something like that?
<dmf:inputmaskvalidator inputmask="#.#" controltovalidate="my_double" name="my_double_validator"/>
or
<dmf:inputmaskvalidator inputmask="##.##" controltovalidate="my_double" name="my_double_validator"/>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您必须使用其他类型的验证器。 Inputmaskvalidator 不利于您的目的。例如使用 regexpvalidator。您可以在此页面上找到示例:
You must use other type of validator. Inputmaskvalidator is bad for your purpose. Use for example regexpvalidator. Example you can find on this page: