I encountered an issue while utilizing ngList in a text box to exchange data with my server. The problem arises when I attempt to delete items from the generated array directly, as it does not reflect the changes in the input field.
The main concern is that any modification made in the text field automatically updates the model, undoing the removal of items.
Is there a solution available for synchronizing the string in the text field with the updated model? I thought about using $apply within my function or a $watch, but both approaches resulted in $apply in progress errors.