Dijit maxLength通过dojo约束语言?

时间:2013-11-28 10:50:44

标签: javascript constraints dojo dijit.form

我正在开发一个项目,我试图将约束映射到XSLT中的Dijit控件到HTML。

一个这样的约束是文本字段的最大长度。 但是,我在Dojo约束语言中找不到这样的约束。

我的错误在下面的示例中是否存在这样的约束(不包括RegEx)?

    <label for="shortField">shortField </label>
    <input id="shortField" data-dojo-type="dijit/form/ValidationTextBox"
        data-dojo-props = "name: 'shortField',
                           width:400,
                           height:150,
                           value: '1234567890',
                           required: true,
                           constraints: { max:10, maxLength:10, length:10, size:10 }
        " />

为了保持一致性,我宁愿使用约束而不是设置_TextBoxMixin的maxLength属性。

(不幸的是,在约束中设置正则表达式也是不可取的,因为在我的控制范围之外可能会被覆盖。)

1 个答案:

答案 0 :(得分:2)

似乎不存在这样的约束。此外,由于我发现我还需要验证最小长度,我选择了子类化Dijit.Form.ValidationTextBox的解决方案。

这是我为isValid方法选择的实现,它从约束中读取,因此我可以保持生成的XSL代码一致。 )

    isValid : function(){
                var ancestorsValid = this.inherited(arguments);

                if(ancestorsValid){
                    //Acquire only meaningful validation boundaries.
                    var minLength = this.constraints && this.constraints.minLength ? Number(this.constraints.minLength) : null;
                    var maxLength = this.constraints && this.constraints.maxLength ? Number(this.constraints.maxLength) : null;

                    //Validate min and max if present.
                    return  ((minLength === null) || this.value.length >= minLength) &&
                            ((maxLength === null) || this.value.length <= maxLength);

                }
                return false;
            }