SharePoint 2013 rollup list web-part refresh

253 Views Asked by At

I have an issue with a SharePoint 2013 rollup list web part that does not update the list status when it is collapsed. However, when the rollup is expanded, or the page is manually refreshed, the status is updated.

As an example, when the workflow adds a new record to the associated list, the count of items in the list remains the same. If I show a status of 4 items in the list and 1 new record is added, the status count remains 4 until the list is unrolled, or the page is refreshed.

I have included a .GIF of the status indicator. It shows a count of 4, but there are 5 items in the list.

sp_list_rollup

On a somewhat related note, the list is set to display up to 20 items, but there are usually no more than 6 at one time.

Any thoughts on how I can resolve the issue, or

1

There are 1 best solutions below

1
LZ_MSFT On

Did you use the latest CU for SharePoint 2013?

https://learn.microsoft.com/en-us/sharepoint/sharepoint-updates#BKMK_2013

Or as a workaround, auto refresh the page every 10 seconds using the JavaScript below, add the code into script editor web part in the page.

<script type="text/javascript"> 
window.onload =function(){
    setTimeout(function() {     
        location.reload();
    }, 10000);
};
</script>