我对这个 ExtJS 很陌生,这是我的 POC,
Ext.onReady(function(){
var my3rdNumberField = new Ext.form.NumberField({
xtype: 'numberfield',
selectOnFocus: true,
allowNegative: false,
fieldLabel: 'Number of Copies',
allowDecimals: false,
name: 'noofcopy',
width: 25,
value:1,
maxValue:20,
minValue:1
});
my3rdNumberField.render(Ext.getBody());
});
我将字段标签指定为份数,但它没有显示在文本框或其他任何地方之前。你能帮我在哪里出错吗?或者我需要在列出的内容中添加什么。如果是这样,为什么 fieldLabel 不起作用?