我的ExtJs版本是6.0。
Ext.onReady(function(){
Ext.create('Ext.Panel', {
width:300,
height:300,
items:
[
{
xtype: 'spinnerfield',
fieldLabel: 'Test',
name: 'test',
minValue: 0,
allowDecimals: false,
incrementValue: 1,
accelerate: true
}
],
renderTo: Ext.getBody()
});
});
我的版本无效......!
示例:[http://cdn.sencha.com/ext/gpl/3.4.1.1/examples/spinner/spinner.html]
{
xtype: 'spinnerfield',
fieldLabel: 'Test',
name: 'test',
minValue: 0,
allowDecimals: false,
incrementValue: 1,
accelerate: true
}
答案 0 :(得分:0)
[http://docs.sencha.com/extjs/6.0/6.0.1-classic/#!/api/Ext.form.field.Spinner]
此类通常不直接实例化,而是进行子类化,并且实现onSpinUp
和onSpinDown
方法以处理单击按钮的时间。一个很好的例子是Ext.form.field.Number
字段,它使用微调器通过其步骤配置值递增和递减字段的值。