Docs
API
-
Config
- barHeight
-
bbar
- bbarHeight
-
buttons
- buttonsHeight
- cls
- defaults
- draggable
-
events
-
footer
- height
- id
- i18n
-
items
- column
-
data
- defaults
- disabled
- displayKey
- editable
- emptyText
- events
-
format
- itemCheckBox
- inputHeight
- inputLabel
- inputWidth
- label
- labelAlign
- labelWidth
- listItemTpl
- leftTpl
- leftWidth
- max
- min
- minListWidth
- multiSelect
- multiToggle
- name
- showPassTip
- spin
- step
- subSearch
- tabIndex
- tip
- type
- value
- valueKey
- vtype
- width
-
lang
-
date
- method
- modal
- params
- renderOuter
- renderTo
- scrollable
- shadow
-
subTitle
-
subTBar
- allowToggle
- action
- cls
- data
- disabled
- displayKey
- editable
- emptyText
- enableToggle
- events
- format
- handler
- hidden
- id
- imageCls
- inputHeight
- itemCheckBox
- leftTpl
- leftWidth
- max
- menu
- minListWidth
- multiSelect
- multiToggle
- paramsMenu
- paramsText
- pressed
- spin
- step
- subSearch
- text
- tip
- toggleGroup
- type
- valueKey
- vtype
- width
- subTBarHeight
-
tbar
- allowToggle
- action
- cls
- data
- disabled
- displayKey
- editable
- emptyText
- enableToggle
- events
- format
- handler
- hidden
- id
- imageCls
- inputHeight
- itemCheckBox
- leftTpl
- leftWidth
- max
- menu
- minListWidth
- multiSelect
- multiToggle
- paramsMenu
- paramsText
- pressed
- spin
- step
- subSearch
- text
- tip
- toggleGroup
- type
- valueKey
- vtype
- width
- tbarHeight
-
title
data
Array
It is used only for combo field.
Combo values.Example
... items: [{ type: 'combo', label: 'Country', name: 'country', data: [ {index: 0, country: 'USA'}, {index: 1, country: 'Canada'} ], displayKey: 'country', valueKey: 'index', value: 0, events: [{ change: function(field, value){ } }] },{ ...
Example: Server data
... items: [{ type: 'combo', label: 'Country', name: 'country', data: { proxy: { url: 'countries.json' } }, displayKey: 'country', valueKey: 'index', value: 0, events: [{ change: function(field, value){ } }] },{ ... countries.json { "data": [ {"index": 0, "country": "Canada"}, {"index": 1, "country": "Finland"}, {"index": 2, "country": "France"}, {"index": 3, "country": "Japan"}, {"index": 4, "country": "UK"}, {"index": 5, "country": "USA"} ] }
Default
undefined
-
date