gpt4 book ai didi

javascript - 错误消息 : DateField. getValue() 不是函数

转载 作者:行者123 更新时间:2023-11-30 22:53:00 27 4
gpt4 key购买 nike

当我使用 DateField.getValue() 时,

(this.toDate.getValue()=="" && this.toDate.getValue()=="")

我收到此错误消息:

Error Msg : DateField.getValue() is not a function

以下代码:

function(){
if(!(this.toDate.getValue()=="" && this.toDate.getValue()==""))
{
if(this.frmDate.getValue()>this.toDate.getValue()){
msgBoxShow(160,1);
this.frmDate.setValue("");
return;
} else {
//calc duration
var frm = this.frmDate.getValue().format(Wtf.simplifyDateFormat());
var to = this.toDate.getValue().format(Wtf.simplifyDateFormat());
if((frm!=""&&to!="")){

this.expensesds.load({
params:{
frmDate:frm,
toDate:to,
start:0

},
scope: this,
callback: function(rec, opt, succ){
if(succ){
this.expensesds.groupBy("viewby");
}
}
});
this.expensesds.groupBy("viewby");
}
else return;
}
} else {
return;
}
},

最佳答案

this.toDate = new Wtf.form.DateField({
emptyText:WtfGlobal.getLocaleText("ec.Todate") + "...",
readOnly:true,
width : 150,
value:new Date(),
format:Wtf.getDateFormat(),
name : 'todate'
});

如果您在渲染或全局声明中分配 toDate 字段,则不会产生此问题

关于javascript - 错误消息 : DateField. getValue() 不是函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27525083/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com