NumberField prompt in ExtJS
问题 I'm trying to show a MessageBox.prompt with a numberfield instead of a regular textfield. I couldn't go around creating a new MessageBox so I decided to just use a validator instead, but I'm having some trouble with it too. So anything will work for me, either a number validator for a MessageBox or a MessageBox with a numberfield instead of textfield. Here's my MessageBox... var msgbox = Ext.Msg.prompt('Quantity', 'Enter a number',function(btn, text){} ) Any ideas for this? UPDATE I managed