Skip to page contentSkip to chat
ServiceNow support
    • Community
      Ask questions, give advice, and connect with fellow ServiceNow professionals.
      Developer
      Build, test, and deploy applications
      Documentation
      Find detailed information about ServiceNow products, apps, features, and releases.
      Impact
      Accelerate ROI and amplify your expertise.
      Learning
      Build skills with instructor-led and online training.
      Partner
      Grow your business with promotions, news, and marketing tools
      ServiceNow
      Learn about ServiceNow products & solutions.
      Store
      Download certified apps and integrations that complement ServiceNow.
      Support
      Manage your instances, access self-help, and get technical support.
UI Page "render_gadget_priority_incidents" causes performance degradation on IE11 if added to a homepage - Known Error
  • >
  • Knowledge Base
  • >
  • Known Error (Knowledge Base)
  • >
  • UI Page "render_gadget_priority_incidents" causes performance degradation on IE11 if added to a homepage
KB0635346

UI Page "render_gadget_priority_incidents" causes performance degradation on IE11 if added to a homepage


573 Views Last updated : Jan 28, 2024 public Copy Permalink
KB Summary by Now Assist

Description

If the base system UI Page "render_gadget_priority_incidents" is added to a homepage and several  records are being returned within that gadget, IE11 exhibits huge performance degradation that causes the browser to freeze. Other browsers such as Chrome don't have any issue.

Steps to Reproduce

  1. Ensure that UI16 is active.

    For more information, see the product documentation topic Activate UI16.

  2. Navigate to System > UI Pages and select the base system UI Page render_gadget_priority_incidents.

  3. Verify that the query is:

    var inc = new GlideRecord('incident');
    inc.addActiveQuery();
    inc.addQuery('priority',1);
    inc.setCategory('homepage');
    inc.query();
  4. Create approximately 4,000 incident records that meet that criteria.

    You can run something like the following code in Scripts - Background:

    for (var i =0; i<4000;i++) {
    var rec = new GlideRecord('incident');
    rec.initialize();
    rec.short_description = 'Test' +i;
    rec.priority = "1";
    rec.insert();
    }
  5. After that code finishes running, navigate to Incident > All and confirm that 4,000 records are in the incident table where priority = 1 and active = true.

  6. Add the UI page to a homepage (for example, Self Service).

    1. Navigate to Self Service > Homepage.
    2. Click the + icon and then click Add content.
    3. Choose Gadgets and then choose Priority 1 Incidents.
    4. Click an Add Here location to add the gadget to the page.
  7. On IE11, view this homepage with the added gadget.

    Note the performance degradation, which will eventually render the browser unusable as it freezes the page and make it unresponsive.

 

Workaround

Use one of the following workarounds:

  • Remove the Priority 1 Incidents Gadget from the homepage.
  • Modify the query in the render_gadget_priority_incidents UI Page to include fewer records.

 

 


Related Problem: PRB731071

The world works with ServiceNow.

Sign in for more! There's more content available only to authenticated users Sign in for more!
Did this KB article help you?
Did this KB article help you?

How would you rate your Now Support digital experience?

*

Very unsatisfied

Unsatisfied

Neutral

Satisfied

Very satisfied

Very unsatisfied

Unsatisfied

Neutral

Satisfied

Very satisfied

What can we improve? Please select all that apply.

What are we doing well? Please select all that apply.

Tell us more

*

Do you expect a response from this feedback?

  • Terms and conditions
  • Privacy statement
  • GDPR
  • Cookie policy
  • © 2025 ServiceNow. All rights reserved.