我的表单中有一个名为 cashPay 的数字字段,另一个字段名称是 totalPayable。现在,如果 cashPay 小于 totalPayable 我需要提醒一条消息并关注 cashPay 字段。但我无法做到。focus 方法适用于其他形式的文本字段,但在数字字段上它不适用于我。谁能帮我解决这个问题。下面是我的代码:
在我的视图页面中>>>
{
xtype: 'numberfield',
name: 'cashPay',
id: 'cashPay',
keyNavEnabled: false,
mouseWheelEnabled: false,
enableKeyEvents: true,
allowBlank: false,
hideTrigger: true,
fieldLabel: 'Cash Pay',
action: 'cashCalculation'
}
在我的控制器中>>>
Ext.Msg.alert("Warning !","Sorry Cash Pay is less than this month's installment. Please pay the right amount")
Ext.getCmp('cashPay').focus(false, 1);