auto-complete icon indicating copy to clipboard operation
auto-complete copied to clipboard

Suppressing No result found message

Open FullStackDeveloper11 opened this issue 8 years ago • 7 comments

I have requirement to implement dual textbox.

  1. 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)

  2. 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

FullStackDeveloper11 avatar Oct 31 '17 21:10 FullStackDeveloper11

I second this.

ceejeeb avatar Nov 16 '17 11:11 ceejeeb

I third this.

SeokwonSong avatar Jan 05 '18 09:01 SeokwonSong

I "fourth" this. Any updates on when/if this will be implemented?

jdk339 avatar Feb 26 '18 15:02 jdk339

Just found out this repo is no longer being maintained as of now.

jdk339 avatar Mar 01 '18 18:03 jdk339

@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.

almothafar avatar Mar 25 '18 15:03 almothafar

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 avatar Apr 29 '18 13:04 levanah22

@levanah22 I thought about that method, but I think that it would be better for you to be more intuitive styling. #348 😄

dninomiya avatar May 18 '18 01:05 dninomiya