I have a multiselect list where on double click of an item I am appending the description and id to respective separate strings. finally it would be like string description = "desc1,desc2,desc3"; string ids="id1,id2,id3"; these description and id's are placed in an input box.now my requirement is to delete any of the choice which is already selected by pressing the backspace key on the input box.
For an example if user wants to remove 'Wood 44*44' from description then it should remove the description as well as its corresponding id as well.how to achieve this scenario.