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
[x] Enhancement [ ] Bug [ ] Question
Please specify what version of the library you are using: [latest]
Have the ability for term actions. Like retrieving the labels of a specific term, and updating the display value.
The text was updated successfully, but these errors were encountered:
This has been implemented in PR #235 by @siata13
<TaxonomyPicker allowMultipleSelections={true} termsetNameOrID="Countries" panelTitle="Select Term" label="Taxonomy Picker" context={this.props.context} onChange={this.onServicePickerChange} isTermSetSelectable={false} termActions={{ actions: [{ title: "Update term label", iconName: "LocaleLanguage", id: "UpdateTermLabel", actionCallback: async (taxService: SPTermStorePickerService, term: ITerm) => { return { updateActionType: UpdateType.updateTermLabel, value: `${term.Name} (updated)` }; }, applyToTerm: (term: ITerm) => (true) // Applying the action to all terms }] }} />
Sorry, something went wrong.
#237 - Added the ability to invoke the term actions after rendering
95654ed
#237 - Style fixes + Fixed update tree action to retrieve term set data
7adfe8a
#237 - Correctly invoking the applyToTerm check
8a89760
No branches or pull requests
Category
[x] Enhancement
[ ] Bug
[ ] Question
Version
Please specify what version of the library you are using: [latest]
Expected / Desired Behavior / Question
Have the ability for term actions. Like retrieving the labels of a specific term, and updating the display value.
The text was updated successfully, but these errors were encountered: