You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on May 21, 2021. It is now read-only.
… allow tracking of specific property instead of hole object
working examples:
* ```option.value as option.label for option in options.data track by option.value```
default: track by 'value' part, same as without track by part
* ```option as option.label for option in options.data track by option.id```
hole option item as value, id property for tracking
* ```option.value as option.label for option in options.data track by option.value.id```
only value of option as value, id of value for tracking
* ```option as option.comments for option in options.data track by option.id```
non working examples:
* ```option.value as option.label for option in options.data track by option.id```
tracking property is sibling to value, not the value itself neither a child
Closes#21
I'm having problems with the hash function and complex models
The problems here is the order of the comments array. The hash function thinks they are different values.
I think a good solution could be a new parameter to pass the hash function. In my case the hash function should compare only by id
The text was updated successfully, but these errors were encountered: