auto-complete
auto-complete copied to clipboard
Suppressing No result found message
I have requirement to implement dual textbox.
-
If User type some letter in the textbox then it should display the name starting with typed letter(this I have already implemented using this letter)
-
If user type just number then it should not do anything but I am getting message "No result found" message , how can I suppress this message?
Thanks
I second this.
I third this.
I "fourth" this. Any updates on when/if this will be implemented?
Just found out this repo is no longer being maintained as of now.
@jdk339 If you can do PR for I'll push this PR ASAP, currently it is nice to have, I'll try to make it later, but will be better if someone do faster PR for this.
hey guys, i solved this with a simple css code:
.ngui-auto-complete > ul {border: 0 !important;} .ngui-auto-complete > ul > li {border-right: 1px solid #ccc !important; border-left: 1px solid #ccc !important;} .ngui-auto-complete > ul > li:nth-of-type(1) {border-top: 1px solid #ccc !important;} .ngui-auto-complete > ul > li:last-of-type {border-bottom: 1px solid #ccc !important;} .ngui-auto-complete > ul > li.no-match-found {display: none;}
@levanah22 I thought about that method, but I think that it would be better for you to be more intuitive styling. #348 😄