I want set focus in a number field in extjs when I press alert ok button but i cant do it i try this system. here is my code
Ext.Msg.alert("Invoice",'Invoice Id  '+invno + '  is not Available');
Ext.getCmp('InvoiceNo').focus(true);
and my number field is
{
xtype : 'numberfield',
hideTrigger : true,
decimalPrecision : 0,
keyNavEnabled : false,
mouseWheelEnabled : false,
fieldLabel : 'InvoiceNo',
id : 'InvoiceNo',
name : 'InvoiceNo',
enableKeyEvents : true,
//minValue : 1,
msgDisplay : 'tooltip',
anchor : '95%',
}