Skip to content

Instantly share code, notes, and snippets.

@cschuff
Created April 3, 2017 12:32
Show Gist options
  • Save cschuff/165278789aab7c5737ef78b447c2b514 to your computer and use it in GitHub Desktop.
Save cschuff/165278789aab7c5737ef78b447c2b514 to your computer and use it in GitHub Desktop.
Stop OData Aggregation Bindings from heavy blinking
invalidate: function () {
var oBinding = this.getBinding("plannings");
// do not rerender during odate request is running since it causes heavy blinking
if (!oBinding || !oBinding.bPendingRequest) {
Control.prototype.invalidate.apply(this, arguments);
}
},
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment