So I\'m doing this in my AppView
var flowerModel = new app.DataModel({title: \"flower\", values: [\"tulip\",\"rose\",\"dandelion\"], dataToShow:[\"tulip\", \"ros
Try this :
flowerModel.bind('change:dataToShow', function() { timelineModel.set('titlesToShow', flowerModel.get('dataToShow')); });
this.model.bind('change', this.render);