How to create something like a search with drop-down lists like on Youtrack on React. Specifically, I do not understand how to make the drop-down list shift to the cursor position after entering the next search key. I would be grateful for any information on this issue. Here is a video demonstration: https://youtu.be/Q4VbK5rePLI

  • Attach examples of how it should look, preferably an animation or video. Not everyone knows what is Youtrack, and this is not something obvious and gives the first in Google. - Alexandr Tovmach pm
  • Here is a video demonstration: youtu.be/Q4VbK5rePLI - Oleg Musin
  • All very simple - create an input with autocomplete based on server requests and a list. Next, create a tagbar in which, instead of tags, use the inputs you created in the first step. Everything. - user220409
  • @OlmerDale Thank you, this is understandable, but how to move the dropdown to the right after entering the next tag? - Oleg Musin
  • one
    @OlegMusin and for this you do not need to do anything special, this is the usual dropdown. If you have a similar question, then learn how to first make dropdowns. In addition, there are several ways to implement dropdown. The choice depends on a specific task that is not known to anyone except you. Break this ui component apart and do it separately. - user220409

0