-
Notifications
You must be signed in to change notification settings - Fork 2.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(edit): add a function to retrieve dropdown options
Add a new member to ColumnDef: editDropdownOptionsFunction: a function returning an array of values in the format [ {id: xxx, value: xxx} ], which will be used to populate the edit dropdown. This can be used when the dropdown values are dependent on the backing row entity with some kind of algorithm. If this property is set then both editDropdownOptionsArray and editDropdownRowEntityOptionsArrayPath will be ignored.
- Loading branch information
Showing
2 changed files
with
88 additions
and
9 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
480927f
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Any feel for when this change might make it into a release?
Thanks!