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?

Parents
No Data
Reply
  • 15320
    Verified Answer
    Offline posted

    Hello Karthik,

    This is caused by a functionality in igGrid which resizes itself when its container is resized.

    You can disable this functionality by setting ‘enableResizeContainerCheck’ option to false: http://help.infragistics.com/jQuery/2015.1/ui.iggrid#options:enableResizeContainerCheck  Please try this and let me know if the problem still persists after that.

    Regards,

    Tsanna

Children