Logic of my app is quite straightforward. I have Model that fetching JSONP (data contains years, quarter, and quarter contains different key:value). After fetching data, View listens for Model's "change" event and then rendering data. So far so good.
But then I need to listen for a "change:year"/"change:quarter" and fetch data with new url, based on changes. But when "change:year"/"change:quarter" fired, global "change" is fired also.
Sure, if I'll use Collection instead of Model – theres is "reset" for me. But in this case I can't listen for "change:year" so easily – I have to create few more Models (for year, quarter and each key in quarters). But I want to keep app simple.
Is there other way around? Or creating much more Model is inevitable?
Thanks.
UPD: "change" event still needed, because Model have to rerender, after fetching new data.
SOLUTION: I've created common Controller, that holds atributes, that needed to be changed. And in .url() method getting them from Controller to modify url. I stick to Collection's fetch()/"reset" notifying and made listener for Controller on "change". So, when I'm changing "year"/"quarter", View get notification from Controller, and when corresponding Collection fetching - it's fetching with new url.