-
Notifications
You must be signed in to change notification settings - Fork 82
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
Allow custom input value in the most basic usage #2
Comments
Thanks @yairEO
Can you explain more on this, I don't really fully get it. Maybe you mean to create new entries from users input into search? |
I want the input to be able to accept any text typed into it, doesn't matter if the value is included in the dropdown list or not, it's not always desirable to limit the text to finite range or options. Hopefully I've managed to explain this better |
Checkout the "Create new Entries" example on https://sanusart.github.io/react-dropdown-select/examples Is that what you need? |
I've checked out all the demos thoroughly, and that's not what i want.. I do not want tags. I am the author of Tagify and I do not need a tags script, but a script which specializes in dropdowns. I need a component which acts as a I think I understand what's going on here... I was completely miss-lead by the name of this script.. I thought it's a dropdown component when in facts in a tags component.. It's just not what the name stands for, this is not a customizable select element, since none of the example mimic the |
How is that not select exactly. |
well, it is close..but I see some bugs: Clicking the component doesn't show the dropdown. you must click exactly on the input and not on the actual container surrounding it, which is a major UX bug.. I'm clicking on some items and seeing a weird rendering: Anyway, I would like to have the ability to enter any text I desire. Thanks |
I made a GIF of the weird stuff I saw: |
Thanks. I'll check out the bug and will add props to control the clear of
input on blur.
Have you checked https://github.com/JedWatson/react-select
Maybe it has what you need imolemented.
…On Sun, Feb 24, 2019, 10:10 PM vsync ***@***.***> wrote:
I made a GIF of the weird stuff I saw:
https://gifyu.com/image/3LL2
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<#2 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AAQVxr8xMkC3kHUkL1w5F0DFsfmdXEsLks5vQvGngaJpZM4bHL9j>
.
|
And yes. Click on the element should open the drop-down. Thanks for the input and clarifications. |
Yes, I've checked many and we are currently using this one, which I strongly recommended against because it is exploding from bugs. 1000+ open issues... We have been using it for some months as part of my client's project and we are looking for a better replacement since it also has open issues with major bugs and the maintainer does not respond as fast and politely as you are :) |
Yes. That's exactly the reasons I started to work on this repo. Also had
very bad experience with overriding build in elements.
…On Sun, Feb 24, 2019, 10:19 PM vsync ***@***.***> wrote:
Yes, I've checked many and we are currently using this one, which I
strongly recommended against because it is exploding from bugs.
1000+ open issues...
We have been using it for some months as part of my client's project and
we are looking for a better replacement since it also has open issues with
major bugs and the maintainer does not respond as fast and politely as you
are :)
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<#2 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AAQVxhIlQXaoEkPost3giOP41bbibtFpks5vQvPAgaJpZM4bHL9j>
.
|
I think I've fixed all mentioned weirdness. |
So what about the props you've mentioned earlier in the comments?
|
Forgot. Will keep this one open for now. |
Added in v2.1.1 via edc348e |
First of all, awesome job. I am impressed.
See this demo:
https://sanusart.github.io/react-dropdown-select/examples
I would like to allow my users to fill any data they desire manually, while also allow the ability to select a pre-existing option from the dropdown.
The problem is, if a test is typed in the field, it disappears on the input's
blur
event...Is there a solution to this?
Thanks!
The text was updated successfully, but these errors were encountered: