Created
April 3, 2017 12:32
-
-
Save cschuff/165278789aab7c5737ef78b447c2b514 to your computer and use it in GitHub Desktop.
Stop OData Aggregation Bindings from heavy blinking
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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