Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
1175
Performance Hit - Endless jQuery Proxy Call
posted

v14.2.20142.2477

We are at the tail end of development on a project and doing a last minute sweep on memory and CPU utilization in IE 11 and I noticed two things:

Infragistics.ui.editors.js is calling the following methods endlessly:

 _doTimer and _fixHeight

jquery-2.1.3.js is calling the following method endlessly:

proxy = function () {

  return fn.apply( context || this, args.concat ( slice.call( arguments) ) );

}

Reason why I bring it up here is because the editors are from the igGrid and an empty igGrid object is being passed into the proxy call as arguments.

It is a small find but it does cause the CPU utilization to hover near 5-10% while the UI is doing absolutely nothing.  Thoughts on why it is behaving in this manner?