change source of select, fixes

This commit is contained in:
vitalets
2013-01-08 14:23:38 +04:00
parent f06b5c4d01
commit 939e0dba51
6 changed files with 65 additions and 3 deletions

@ -311,6 +311,10 @@ Editableform is linked with one of input types, e.g. 'text', 'select' etc.
if(key === 'value') {
this.setValue(value);
}
//pass to input
if(this.input.option) {
this.input.option(key, value);
}
},
setValue: function(value, convertStr) {