OPEN TO WORK

Available for new opportunities! Let's build something amazing together.

Automatically update / refresh results in display templates

Display Templates JavaScript Search
post

This post is over a year old, some of this information may be out of date.

During the creation process of a demo for my SharePoint Saturday Belgium session this year, I suddenly came up with the idea to automatically update or refresh results of a Content Search Web Part. This could be useful when you have dashboard pages and you want to keep showing the latest items retrieved from search. Eventually it doesn’t seem to be that difficult to achieve this. The following steps show you which actions you need to perform to have an automatically refreshing template.

What you’ll need to do is creating or modifying a Control Display Template for the CSWP. In this control template you’ll only need to add the following lines of code:

// Do a refresh of the current result set
AddPostRenderCallback(ctx, function(){
setTimeout(function () {
// Do a new query
var queryState = new Srch.QueryState();
var queryStateArgs = new Srch.QueryEventArgs(queryState);
ctx.ClientControl.raiseQueryReadyEvent(queryStateArgs);
}, 60000);
});

It can even be simpler, you could also use the following code:

// Do a refresh of the current result set
AddPostRenderCallback(ctx, function(){
setTimeout(function () {
// Do a new query
ctx.DataProvider.issueQuery();
}, 60000);
});

This piece of code will be executed every minute and will update the set of results. If you want to increase or decrease this, you’ll need to change the number at the end of the setTimeout method.

Result

Images don’t say much in this scenario, but what you can see is that the first result is replaced with a newer task.

Show image First set of results
First set of results
Show image Results after a new crawl
Results after a new crawl

Download

This is the default list control display template with the piece of code added to it. Feel free to test this on your environment.

Control_Refresh.html (Right click - save as).

Related articles

Report issues or make changes on GitHub

Found a typo or issue in this article? Visit the GitHub repository to make changes or submit a bug report.

Comments

Elio Struyf

Solutions Architect & Developer Expert

Loading...

Let's build together

Manage content in VS Code

Present from VS Code