| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- [{
- "xtype": "textfield",
- "name": "text",
- "bind": "{text}",
- "fieldLabel": "文本",
- "allowBlank": true,
- "columnWidth": 1
- }, {
- "xtype": "numberfield",
- "name": "num1",
- "bind": "{num1}",
- "fieldLabel": "加数",
- "allowBlank": false,
- "columnWidth": 0.5
- }, {
- "xtype": "numberfield",
- "name": "num2",
- "bind": "{num2}",
- "fieldLabel": "加数",
- "allowBlank": false,
- "columnWidth": 0.5
- }, {
- "xtype": "numberfield",
- "name": "sum",
- "bind": "{sum}",
- "fieldLabel": "和",
- "allowBlank": false,
- "columnWidth": 1
- }, {
- "xtype": "detailGridField",
- "columnWidth": 1,
- "configUrl": "resources/json/detailGridColumns1.json"
- }, {
- "xtype": "datefield",
- "name": "createTime",
- "bind": "{createTime}",
- "fieldLabel": "制单日期",
- "allowBlank": true,
- "columnWidth": 0.25
- }, {
- "xtype": "textfield",
- "name": "creator",
- "bind": "{creator}",
- "fieldLabel": "制单人",
- "allowBlank": true,
- "columnWidth": 0.25
- }, {
- "xtype": "textfield",
- "name": "field1",
- "bind": "{field1}",
- "fieldLabel": "field1",
- "allowBlank": true,
- "columnWidth": 1
- }, {
- "xtype": "textfield",
- "name": "field2",
- "bind": "{field2}",
- "fieldLabel": "field2",
- "allowBlank": true,
- "columnWidth": 1
- }]
|