Some new features:
- added support for textarea
es. input: <label>, textarea: <lines of text area>, textarea_id: <id textarea>
- added support for radio buttons and groups of radio buttons
es.
radio_groups: {
<group id> : {
title : <group title 1>,
radios: {
<radio 1>: {
id: <radio id>,
text: <radio text>
checked: <boolean>
},
},
}
}
- added support for attributes on buttons
es.
buttons: {
<button name>: {
id: <id>,
text: <text>,
attrName: <attribute name>,
attrVal: <attribute value>,
- added support for locking Enter key (useful when editing textarea)
enable_Enter: true
- added support for scrollable contents
scrollable_content: false
- added buttons inline display mode and buttons min height parameter
buttons_inline: false buttons_inline_min_height: 30