gpt4 book ai didi

extjs4 - 当按下警报确定按钮时,将焦点设置在 extjs 中的表单字段上

转载 作者:行者123 更新时间:2023-12-04 05:21:21 26 4
gpt4 key购买 nike

当我按下警报确定按钮时,我想在 extjs 的数字字段中设置焦点,但我无法做到,我尝试了这个系统。这是我的代码

Ext.Msg.alert("Invoice",'Invoice Id &nbsp'+invno + '&nbsp  is not Available');  
Ext.getCmp('InvoiceNo').focus(true);

我的号码字段是
{
xtype : 'numberfield',
hideTrigger : true,
decimalPrecision : 0,
keyNavEnabled : false,
mouseWheelEnabled : false,
fieldLabel : 'InvoiceNo',
id : 'InvoiceNo',
name : 'InvoiceNo',
enableKeyEvents : true,
//minValue : 1,
msgDisplay : 'tooltip',
anchor : '95%',
}

最佳答案

我可以通过这个过程做到这一点。

 var v = Ext.getCmp('InvoiceNo').getValue();
Ext.Msg.confirm('InvoiceNo','InvoiceNo'+v , function (button) {
var InvoiceNo = Ext.getCmp('InvoiceNo');
if (button == 'yes') {
setTimeout(function(){
InvoiceNo.setValue(v);
InvoiceNo.focus(true)[0];
},100);
}
}, this);

关于extjs4 - 当按下警报确定按钮时,将焦点设置在 extjs 中的表单字段上,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13656491/

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