Dojo Date文本框无效消息隐藏

时间:2014-12-23 13:51:53

标签: dojo datepicker

我想禁用或不显示无效的工具提示消息。 我正在创建像这样的日期文本框



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()} 
	};




我不想显示无效的工具提示消息,如附加图像enter image description here

中所示

1 个答案:

答案 0 :(得分:0)

您可以通过使用空函数覆盖它的displayMessage函数来禁用工具提示消息。

示例:

this.dateTextbox = new dijit.form.DateTextBox({
            name : this.name,
            id : this.name,
            displayMessage : function(){

            }
        });

JSFiddle:http://jsfiddle.net/kagant15/4vud29jt/