I'm pretty new to React Js, I have a requirement for building AutoComplete Multiselect dropdown. Despite looking around for lot of examples, I was suggested not use any third party libraries. And pretty clueless how to start and proceed further.
My requirements are
- Have an input text box for typing names.
- Display sugggested name with checkbox.
- Upon checking the names, they must be display in an
- with an 'X' symbol(remove item)
- If I uncheck the name from the multiselect dropdown, it must be removed from the li.
- If I Click the 'X' it should be removed from the li and uncheck the item from dropdown list.
- And lastly , I need to display the selected items in the input fields like
I've been trying to implement this functionality but figure out how.
Can anyone please provide some reference and any guidance in implementing this functionality or any examples. It would be a great help.
Thanks
