-
Notifications
You must be signed in to change notification settings - Fork 2.8k
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
ComboBox sends bad onChanged after backspacing all characters #3055
Comments
Any update on this issues ... Any work arounds? |
@jspurlin Is this still on your radar? |
This issue has been automatically marked as stale because it has not activity for 30 days. It will be closed if no further activity occurs within 14 days of this comment. Thank you for your contributions to Fabric React! |
Also running into this issue, has anyone found a workaround for clearing combobox input? |
Same here. Please increase priority some of my core features relies on this component |
I thought I could do a quick fix on this, but the fix is VERY involved based on how this was actually coded. |
FYI, I've got a local fix for this. Need to finish testing and then will have a PR sent out |
Bug Report
Priorities and help requested (not applicable if asking question):
Are you willing to submit a PR to fix? No, probably not (sorry)
Requested priority: Normal
Products/sites affected: Nutshell CRM Outlook add-on
Describe the issue:
I am using an uncontrolled ComboBox on a form,
allowFreeform
set totrue
. I have found that when I backspace out all of the characters one at a time and then press enter, thevalue
argument that is provided toonChanged
is the last letter that was backspaced (the first letter of the original contents). See Provided codepen for a demonstration.Actual behavior:
onChanged
is called with a single character in thevalue
argument.Expected behavior:
onChanged
is called with an empty string.If applicable, please provide a codepen repro:
https://codepen.io/IanVS/pen/wryoby
The text was updated successfully, but these errors were encountered: