如何在sencha的文本字段中显示前导零?

时间:2018-09-13 08:46:00

标签: extjs

例如:Test-0001

就我而言,它是删除零,并且仅显示Test-1。

代码-

items: [{
          xtype: 'textfield',
          itemId: 'txt_Barcode',
          inputId: 'txt_Barcode',
          flex: 1,

          labelWidth: 150,
          fieldLabel: 'Barcode',
          listeners: {
                  blur: 'onBarcodeBlur',
                  change: 'onBarcodeChange'
                  },
          bind: '{theRecord.barcode}'
},

1 个答案:

答案 0 :(得分:0)

问题是用正则表达式替换了零。如果您仍要过滤字符串,可以使用以下示例:FIDDLE