-
Notifications
You must be signed in to change notification settings - Fork 8
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Binding with multiple values #10
Comments
i have same problem, i need to bind selected values |
I also have the same problem. |
Try with selected instead of value, I customized my code and it worked with other changes. |
Could you help provide us with your working code? |
@magda26 It not work for me yet, If i try with static data store like author sample it works, if store via Binding not work. |
@meashsim
|
@magda26 I think problem store may be. but I think store load before component start because xtype combox it works has list data. But when change to 'tagfield' no any data the i press key 's' show error. |
@magda26 I think related bind it delay load result of data, so default empty store will be assigned, with |
This working code problem with Bind delayed applyStore: function(store) {
` |
I´m trying to bind the selected values, but i don´t know how.
I'm using the value option in my tagfield item like this:
bind: { value : '{record.topics}', }
but in this case I had an error in this line:
var keys = Object.keys( this._selected ),
so I inserted an "If" tag before:
if( !this._selected )this._selected = {};
and in this case It didn´t throw any error but it didn't bind either.
So i don't know if it´s the correct way to implement it.
Thanks for help with this issue
The text was updated successfully, but these errors were encountered: