Docs
API
-
Config
-
bbar
-
buttons
- cls
-
defaults
- draggable
-
events
-
footer
- height
- id
- i18n
-
items
-
lang
html
HTML field type
Example
items: [{ type: 'html', value: [ '<b>Kia Sportage</b><br>', '<img src="img/kia-sportage.png">' ].join("") },{ ...
Properties
events
ArraySet event handler to field.
... items: [{ type: 'html', value: [ '<b>Kia Sportage</b><br>', '<img src="img/kia-sportage.png">' ].join(""), events: [{ change: function(){ } }] },{ ...
name
StringName of field over which it is possible to get value of field.
... items: [{ type: 'html', name: 'info', value: [ '<b>Kia Sportage</b><br>', '<img src="img/kia-sportage.png">' ].join("") },{ ...
type
StringType of field (value - html).
{ type: 'html', value: [ '<b>Kia Sportage</b><br>', '<img src="img/kia-sportage.png">' ].join("") }
value
BooleanValue of field.
items: [{ type: 'html', value: [ '<b>Kia Sportage</b><br>', '<img src="img/kia-sportage.png">' ].join("") ...
Events
change
(field, value)Value of field.
items: [{ type: 'html', value: [ '<b>Kia Sportage</b><br>', '<img src="img/kia-sportage.png">' ].join("") events: [{ change: function(){ }, scope: {}//not required }] ...
-
bbar