We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
For properties on objects in an array you have to do the full boiler plate:
updateEvents: ['behaviors.bill.data:change:receiptMessageRetrievers', 'behaviors.bill.data:fetched:ids'], ids: function() { var billDataBehavior = this.view.getBehavior('bill'); var billData = billDataBehavior.data; var receiptMessageRetrievers = billData.get('receiptMessageRetrievers'); return _.pluck(receiptMessageRetrievers, 'id'); }
Would be nice to do something like:
ids: { property: 'behaviors.bill.data:receiptMessageRetrievers[].id' }
The text was updated successfully, but these errors were encountered:
possibly drop [] and auto-detect arrays.
Sorry, something went wrong.
No branches or pull requests
For properties on objects in an array you have to do the full boiler plate:
Would be nice to do something like:
The text was updated successfully, but these errors were encountered: