This repository has been archived by the owner on May 21, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(trackBy): add 'track by' part to w11kSelectOptions expression to…
… 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
- Loading branch information
Philipp Burgmer
authored and
Philipp Burgmer
committed
Feb 3, 2016
1 parent
c34a1b5
commit e7db96e
Showing
3 changed files
with
83 additions
and
53 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters