我想添加一个只能接受整数而不允许十进制数的字段。

我尝试使用numberfield作为

{
    xtype : 'numberfield',
    fieldLabel : 'number',
}


我不想使其无法编辑

有没有办法做到这一点。

最佳答案

请尝试在numberfield上设置allowDecimals配置,如下所示:

{
    xtype : 'numberfield',
    fieldLabel : 'number',
    allowDecimals: false
}

关于javascript - Extjs:验证整数,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/30374656/

10-11 12:27