extjs4中日期怎么比较大小?
我用控件选择日期,第一个日期选中后再选第二个日期,但我需要比较一下两个日期的时间关系,第二个日期必须在第一个日期时间之后,否则不能选中。求大侠指点!!!!!是extjs4...
我用控件选择日期,第一个日期选中后再选第二个日期,但我需要比较一下两个日期的时间关系,第二个日期必须在第一个日期时间之后,否则不能选中。求大侠指点!!!!!是extjs4中的。。。
Java 展开
Java 展开
展开全部
可以使用change事件,先获取到第一个时间,
var firstTimeValue = form.findField('firstTime').getValue();
然后对第二个时间做change事件,
'form timefield':{
change:function(timefield){
var secondTimeValue = timefield.getValue();
if( firstTimeValue > secondTimeValue ){
Ext.Msg.show({
title:'提示',
msg: '时间输入不正确(开始日期不能大于结束日期)',
buttons: Ext.Msg.OK,
icon: Ext.Msg.ERROR
});
}
}
},
var firstTimeValue = form.findField('firstTime').getValue();
然后对第二个时间做change事件,
'form timefield':{
change:function(timefield){
var secondTimeValue = timefield.getValue();
if( firstTimeValue > secondTimeValue ){
Ext.Msg.show({
title:'提示',
msg: '时间输入不正确(开始日期不能大于结束日期)',
buttons: Ext.Msg.OK,
icon: Ext.Msg.ERROR
});
}
}
},
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询