Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refresh view when store changes #69

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions src/calendar/view/AbstractCalendar.js
Original file line number Diff line number Diff line change
Expand Up @@ -1521,6 +1521,9 @@ Ext.define('Extensible.calendar.view.AbstractCalendar', {
currStore.un("load", this.onEventStoreLoad, this);
currStore.un("clear", this.refresh, this);
currStore.un("write", this.onWrite, this);
currStore.un("update", this.refresh, this);
currStore.un("add", this.refresh, this);
currStore.un("remove", this.refresh, this);
// Note that this handler is attached to the proxy's exception event. In Ext 4 the store no longer
// raises an exception event. Store.sync() does accept a callback argument in 4.1+, but in 4.0.x
// unfortunately the only way to handle this is directly on the proxy, so for ease of compatibility
Expand All @@ -1531,6 +1534,9 @@ Ext.define('Extensible.calendar.view.AbstractCalendar', {
store.on("load", this.onEventStoreLoad, this);
store.on("clear", this.refresh, this);
store.on("write", this.onWrite, this);
store.on("update", this.refresh, this);
store.on("add", this.refresh, this);
store.on("remove", this.refresh, this);
store.getProxy().on("exception", this.onException, this);
}
this.store = store;
Expand Down