アラートOKボタンを押したときにextjsの数値フィールドにフォーカスを設定したいのですが、それができません。このシステムを試してみました。これが私のコードです
Ext.Msg.alert("Invoice",'Invoice Id  '+invno + '  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%',
}