-
-
Notifications
You must be signed in to change notification settings - Fork 266
New issue
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
CMultiSelect not re-rendering on provided options change. Even empty array is provided previous placeholder is still displayed. #402
Comments
@bizon-boxcribe I will check |
@bizon-boxcribe I just released v5.3.0, please check this example - https://coreui.io/react/docs/forms/multi-select/#coordinated-selection |
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions |
This problem persists to this day, const [test, setTest] = useState([]);
<>
{JSON.stringify(test)}
<CMultiSelect
label={"test"}
onChange={() => {}}
multiple={false} options={test} />
<button onClick={() => {setTest([{value:Math.random(), label: "RANDOM VALUE " + Math.random(), selected: true}])}}>TEST</button>
</> When pressing the button, only the first time it will recreate the list, and after that only the first selected remains. |
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions |
If the prop
options
change, the component is not redrawn.If the prop
options
is emptied (empty array provided), placeholder still shows the previous selection though there are no options to select fromWhen new
options
prop is provided theonChange
is not fired, meaning that submitting the form will keep the old value!There is no easy way to reset the selection programmatically, without using the
cleaner
prop - it forces devs to remove the component from the view briefly in order to force re-render!Feature: Please provide a way to programmatically deselect/clear selection ...
Test case:
Gif recording:
Similar previous closed bug: #268
The text was updated successfully, but these errors were encountered: