Adding an Auto-Refresh Content Editor Web Part

The Challenge

You want to create a dashboard which will automatically refresh itself on a regular basis

The Solution

This is easily accomplishable using a SharePoint Web Part and little bit of scripting, JavaScript in this case, to be precise.

How to Accomplish This Task

Start by going to the page you want to edit, and begin editing the page (you will obviously have to have rights to do this).

Add a Web Part to your page (you should already be in a mode like below).

Choose the “Media and Content” Category, “Content Editor” Web Part, and add it to any part of the page (such as the “Header”).

Select the web part and choose “Edit Web Part” from the drop down. A menu will appear on the top right hand side of the page, you may need to scroll over/up to find it.

Set the Title to “Refresh the Web Page”.

Set the Chrome Type to “None”.

Click OK to accept those changes. Then you need to add the script to the web page. To do this, you start by clicking in the section “Click here to add new content”.

A cursor will appear in the content area, however, don’t type anything in the content area, instead simply go to the ribbon and under Editing Tools -> Format Text, select the HTML drop down, and choose “Edit HTML Source”.

In the HTML Source box, enter the following JavaScript code.

[javascript]

function refreshPage()
{
window.location = window.location;
}
setTimeout(refreshPage, 300000);

[/javascript]

Basically, this script is calling a function after 5 minutes (1000 milliseconds * 60 seconds * 5 minutes = 300000 – this can be any value you choose, just do the math right), which will refresh the page (without showing the annoying, “Are you sure you want to resubmit this page” message that appears in IE when using “window.location.reload”).

Finally, stop editing the page and you will be all done.

Your page should now have a hidden Web Part which will refresh the page every 5 minutes (or whatever number you should choose).

 

24 responses to “Adding an Auto-Refresh Content Editor Web Part

  1. It doesn’t work for all applications, but the Ajax refresh availabe on web-parts is also a great way make sure the information is up to date.

    Doesn’t require any code and only refreshes the specific web-part data instead of doing a full page refresh so it’s easier on the server.

  2. No, the ajax refresh on web parts isn’t available universally, plus it will only update the particular web part, not an entire page. The idea for this post was to provide a means to force a page refresh, not a web part refresh.

  3. I messed up and put a typo in the script for the refresh rate. Meant to put 15000 but I put 1500. Now the page refreshes so fast that I can’t get to where I can re edit the web part to fix that. Is there another way to edit a web part or do I have to rebuild the page? Thanks for the help.

    1. You should be able to edit this page using SharePoint Designer. Unless it’s a publishing page, in which case, you could try to disable JavaScript in your browser and edit it that way.

  4. Thanks for your help but my sharepoint says warning your html source may have been modified then justs the code as normal text on the page.

  5. eric, the message “Warning: the html source you entered might have been modified” is quite normal and you can safely ignore it. It’s just telling you that you have changed the html source of the page.

    Colin missed out one slightly important part in that the javascript needs to be wrapped in . The full code you enter is as follows:

    function refreshPage()
    {
    window.location = window.location;
    }
    setTimeout(refreshPage, 300000);

  6. Apologies, the relevant code got stripped out of my previous post.

    The code you need is:

    “” (remove the first and last “)
    then add the javascript above, then
    “” (remove the first and last “)

  7. We’ve been monitoring a server and can see a page that has a lot of autorefresh webparts on it. what sort of memory hit can this add to the server?

  8. Thanks for the post, this is what I was looking for. However, I found two issues with the solution:

    1. With the webpart added to the top of the list, users now can’t select different views anymore. The view dropdown disappears, but returns as soon as the webpart is deleted.

    2. When auto-refreshing, I get a “The webpage cannot be found” error, and the URL of the list is changed to http://sitename/Lists/listname/%5Bobject%20Location%5D, i.e. has [object%20Location] appended to the list address.

  9. Is there any way to change this so it does the refresh when a list item is changed? Do you have a solution for that?

  10. I want to refresh the page only once once it is loaded and not every 5 minutes. What is the best way to that using this code?

    Thanks,
    Ricky

Comments are closed.