在你提到的文檔中(在這裏找到的http://dojotoolkit.org/reference-guide/dijit/form/ValidationTextBox-tricks.html#dijit-form-validationtextbox-tricks)他們提到創建一個自定義驗證函數。嘗試添加下面的檢查功能的開頭:
dijit.byId("validationTextBoxNodeId").validator = function (value, constraints) {
if(document.activeElement.id == "validationTextBoxNodeId") return true; //don't check while typing
// Check that email has not been used yet.
if (some-checks) {
return true;
} else {
return false;
}
}
或者,如果你並沒有使用手動ID,如「validationTextBoxNodeId」來驗證文本框,並以編程方式創建的一切(有,在我的經驗,得到了更可能的情況):
new dijit.form.ValidationTextBox({
name:"email",
//insert other properties like value, required or invalidMessage here
validator: function() {
if(this.id == document.activeElement.id) return true; //don't check while typing
//real checks go here
if (some-checks) {
return true;
} else {
return false;
}
}
});
通知你不需要明確提及盒子的ID,因爲驗證功能在其範圍內的工作。如果需要,您可以在第一個示例中使用dojo.hitch()完成相同的操作。
此外,請注意,這隻適用於您的目標瀏覽器支持document.activeElement(Which browsers support document.activeElement?)。
肖恩很好的回答。恕我直言,做這種類型的檢查背後的概念,IAW的文件是不是很好的思想和肖恩的dojo.hitch(或dojo.connect)的建議是現貨。您對驗證觸發器有更多的控制權,儘管您必須執行更多的手工操作,並且還必須驗證表單提交。 – 2012-01-04 04:59:00