我想禁用或不显示无效的工具提示消息。 我正在创建像这样的日期文本框
this.createDateTextBox = function() {
this.dateTextbox = new dijit.form.DateTextBox({
name : this.name,
id : this.name
});
};

this.setProperties = function(){
this.dateTextbox.constraints={selector:'date',required: false, datePattern:'dd MMMM yyyy', min:new Date()}
};

我不想显示无效的工具提示消息,如附加图像
中所示答案 0 :(得分:0)
您可以通过使用空函数覆盖它的displayMessage函数来禁用工具提示消息。
示例:
this.dateTextbox = new dijit.form.DateTextBox({
name : this.name,
id : this.name,
displayMessage : function(){
}
});