I currently have an Angular1 autoComplete textbox with multi columns. I was wondering if it is possible to color or disable a row, to represent that it has already been selected previously.
For example..
I have a list of "selected" states, that starts with 0 items in it.
I have an autoComplete textbox that is populated with the states["New York" "Florida", "New Mexico"]
If I type into the textbox "New" I should get two results: "New York" and "New Mexico".
Lets say that I select the row "New York". I now place the element "New York" into my list of selected states.
If I reset my textbox back to empty string, and start again, then type in "New" again I should get the same results as before.
However, this time I would like to see the row with "New York" disabled (or colored differently) since it has already been selected and exists in my selected states list.
Is this possible to do?
Thank you