Making bootstrap calendar render when data change in meteor
问题 I'm still struggling to get a calendar to re-render when data changes using meteor blaze. I have put in place an observerChanges function that is firing happily when added, removed or changed are triggered, but I have NO idea how to actually make the calendar update its state. The handler code is Meteor.subscribe("reqEvents"); allReqsCursor = Requests.find(); var handle = allReqsCursor.observeChanges({ added: function (id, user) { console.log("Request added"); }, removed: function () {