|
想做一个确认提示框的信息,为什么不出弹出框,而是在下一次点击的时候才出来?
<span component="$UI/system/components/justep/messageDialog/messageDialog" xid="messageDialog" width="45%" type="YesNo"></span></div>
this.comp("messageDialog").show({
type : 'YesNo', title : '确认提示', message : '是否级联更新生成合同之前的所有询价单?', width : '45%',
callback:function(param){
if(param.button =='yes'){
currentData.setValue("isUpdateCascade",true);
}else{
currentData.setValue("isUpdateCascade",false);
}
cpqdData.saveData();
}
});
|
|