为什么ExtJs 6.0 Spinnerfield不工作..?

时间:2016-03-08 01:46:26

标签: android extjs extjs4

我的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
}

1 个答案:

答案 0 :(得分:0)

[http://docs.sencha.com/extjs/6.0/6.0.1-classic/#!/api/Ext.form.field.Spinner]

此类通常不直接实例化,而是进行子类化,并且实现onSpinUponSpinDown方法以处理单击按钮的时间。一个很好的例子是Ext.form.field.Number字段,它使用微调器通过其步骤配置值递增和递减字段的值。