我有一个JS覆盖层,它将我的Web应用程序上的数据输入控件设置为dojo小部件。我抓住输入像< input type =“text”class =“date”/>并将它们转换为DateTextBox
小部件。
这是我的基本代码:
var df = dateformat;
df.replace('mm', 'MM');
var val = input.value;
if (val == undefined){
val = '';
}
return new datebox({
"label": input.title,
"value": val,
"name": input.name,
"id": input.id,
"constraints": { "datePattern": df }
});
我的问题是,如果没有提供任何值,所有DateTextBox的最终设置为'1970-00-01'作为初始日期。如果没有提供任何值,我希望将它们设置为null或undef但是在启动之后这似乎不可能。
在我致电widget.startup()
之前,有没有办法设置这个?
答案 0 :(得分:6)
您需要传递文字null
或undefined
,而不是将空字符串传递给DateTextBox。我整理了一个jsfiddle,演示了不同类型的值以及它们最初的显示方式:
require(['dijit/form/DateTextBox', 'dojo/domReady!'], function (DateTextBox) {
//initial value current date
new DateTextBox({
value: new Date()
}).placeAt('myBody');
//no value
new DateTextBox({
}).placeAt('myBody');
//null value
new DateTextBox({
value: null
}).placeAt('myBody');
//undefined value
new DateTextBox({
value: undefined
}).placeAt('myBody');
//empty string value
new DateTextBox({
value: ''
}).placeAt('myBody');
});