0

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

David F
  • 265
  • 2
  • 14

1 Answers1

0

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>
LZ_MSFT
  • 4,079
  • 1
  • 8
  • 9
  • I have adjusted the refresh on the individual web part from the default 60 seconds to 15. We'll see how that works. If we still have issues, I'll use your script to refresh the entire page. Thanks for your advise. – David F Apr 16 '18 at 13:41