-
Notifications
You must be signed in to change notification settings - Fork 8
Open
Description
Binding value works on the way in, but not out back to the viewmodel.
I created a workaround, as the publishes: 'value' wasn't working.
Ext.define('Ext.field.TagField', {
.......
xvalue:null,
/**
* @cfg publishes
* @inheritdoc
*/
defaultBindProperty: 'xvalue',
publishes: 'xvalue',
....
then in onSelect and onDeselect, add these after this.validate();
this.setXvalue(this.getValue());
After I did that, binding working fine.
Related fiddle i found the workaround from - https://fiddle.sencha.com/#view/editor&fiddle/1t1e
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels