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
when choose a item in my list fire onSelectedItemsChange event i want to get select text item not id how?
class ShiftRateScreen extends Component { state = { selectText: 'Role Name', itemsList: items, selectedItems: [], }; onSelectedItemsChange = (selectedItems) => { this.setState({ selectText: ?????????????????????????????????????, selectedItems: selectedItems, }); }; render() { return ( <MultiSelect items={this.state.itemsList} uniqueKey="id" displayKey="family" ref={(component) => { this.multiSelect = component; }} single={true} hideSubmitButton={true} selectText={this.state.selectText} searchInputPlaceholderText="Type or select a Role" filterMethod="full" onSelectedItemsChange={this.onSelectedItemsChange} /> ); } }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
when choose a item in my list
fire onSelectedItemsChange event
i want to get select text item not id
how?
The text was updated successfully, but these errors were encountered: