I'm using Backbone for a webapp in which I fetch a model from an API call and populate a view with that. Within that view, there are a couple things, among which is a textarea and some sort of chat area (which is populated with other views). So far so good.
I now want to call the API again, and if the initial model changed I want to update parts of that view. My problem is now, that I am afraid that if I reload the view, the things that people might have written in the textarea are gone. I guess I can make a call and update parts of the view using jQuery, but I think that's not really the idea behind Backbone.
So my question is now; how can I use Backbone to update parts of the initial view without reloading the whole view? All tips are welcome?