Status list web part indicators keeps on loading

Hi,
When I am using more than 1 status list web part on a page, only the first one loads completly.
Rest are in loading status.
Please assist.

Hi,
According to your description, my understanding is that the status list web parts in your page only load completely for the first one.
I made a test in my SharePoint 2013 environment, and the status list web part can all load properly in the page.
Did your environment install the latest CU updates ?
I suggest you can install the latest CU updates and test if it works.
SharePoint CU download link:
http://blogs.technet.com/b/steve_chen/archive/2013/03/26/3561010.aspx
Best Regards
Zhengyu Guo
TechNet Community Support

Similar Messages

  • Status List Web Part corrupting other Web Parts!!

    Hello,
    I am using the Project Site Template and have observed a very strange behavior when I add a Status List (with status indicators) to the overall "Home" page: It seems to be corrupting other web parts located on the same page. I.e. the
    timeline is suddenly displayed twice and the newsfeed has no entries anymore.
    Has anyone got experience with this?? I couldn't find anything similar here!
    Kind regards..  

    Hi,
    According to your description, my understanding is that the status list web parts in your page only load completely for the first one.
    I made a test in my SharePoint 2013 environment, and the status list web part can all load properly in the page.
    Did your environment install the latest CU updates ?
    I suggest you can install the latest CU updates and test if it works.
    SharePoint CU download link:
    http://blogs.technet.com/b/steve_chen/archive/2013/03/26/3561010.aspx
    Best Regards
    Zhengyu Guo
    TechNet Community Support

  • How to limit the number of items in a KPI Status list web part?

    How to limit the number of items in a KPI Status list web part? There is no paging option for Business Category Status list or any limit can be made by changing the Item limit in default view unlike other SharePoint List web parts. So How to achieve it?
    Kindly help.
    Regards,
    ZA
    zzzSharePoint

    Hi,
    According your post, I know you would like to set the item display limit in Status List web part.
    In the web part, the number of items to display is based on the view which you selected when configuring the web part. The default view for status list is status list view.
    However, I am not able to limit the items’ display number of the status list view. After changing the items limit, the list item displayed would not match the number specified by Item Limit. Thus, it is not possible to limit the number
    of items in the Status list web part.
    It could be a potential issue in SharePoint 2010.
    We will log this issue to our suggestion box. As after the submission, we may not have any time guarantee when the fix may be released, but it may come out on next cumulative update.
    Appreciate your time and efforts.
    Thanks.
    Tracy Cai
    TechNet Community Support

  • Show only status indicator icon for Status List Web Part

    Is there anyway to show ONLY the traffic light status indicator option for the status indicator web part?

    Well heck! I didn't know you were being forced to suffer in Quirks Mode!
    Quirks Mode kicks in if a page doesn't have a <!DOCTYPE> tag as its first element, which might have happened if you have any custom master pages, or if you upgraded to SharePoint 2010 from 2007, reusing some of the default master pages.
    The fix appears to be to add a proper doc type declaration to the top of your masterpage (or to your standalone page, if it's been customized), before the opening <html> tag.
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
    For reference:
    http://blogs.msdn.com/b/alimaz/archive/2010/01/10/sharepoint-2010-ribbon-and-quirks-mode-issue.aspx
    http://blog.tylerholmes.com/2008/08/quirks-mode-strikes-again.html
    http://heathersolomon.com/blog/archive/2008/01/25/DOCTYPES-and-SharePoint.aspx

  • Error "This web part was unable to load"

    Hi!
    I'm designing workflow in Sharepoint designer 2013 for Project Server. I have 3 stages. In second stage I have "start a task process (task outcome to variable: outcome)" and in "transition to stage" I have:
    If variable: outcome equalls approved
      go to third stage
    else
      go to first stage
    I receive a new task and I click "rejected". Then I refresh this page "Project Detail Pages - Workflow Stage Status" and I get this error:
    Workflow Status
    This Web Part was unable to load.
    Information that may be useful in solving this problem was written to the Unified Logging Service (ULS) log on the Project Web App with the following ID: c2780c9c-323c-20cd-dc2e-02cf3e2bd3d3
    For more information, contact your Project Web App administrator.
    How do I solve this? Workflow goes back to first stage and everything else seems to work (In my first stage I have wait for project submit and if I click submit, workflow goes to second stage and that web part reloads fine).
    Best regards
    Parkelj

    I found a way to handle this issue. Webpart is not able to capture the movement to the last stage in the same phase. You can easily move back to a stage in the other Phase. e.g.,
    Phase 2: Stage 2 -> Phase 2: Stage 1    (Issue)
    Phase 2: Stage 2 -> Phase 1: Any Stage ()
    You can add a new stage in previous phase and in the Transition to Stage segment put a Go to Stage action to your desired stage.
    The flow will be
    Phase 2: Stage 2 -> Phase 1: Transition Stage -> Phase 2: Stage 1
    By doing this the Workflow status will work fine but the only trade off will be an additional Phase movement will be displayed in the workflow visualization (marked in red in the below image).
    I hope it will help you guys.

  • Js Query External List Web Part

    I am trying to appply a Js Query to higlight those rows in the external List which have the word "pending". I did this by adding the JS Query in the existing web Part which contains the external list.  The below js query does not seem to be
    working. Let me know your thoughts. Thx!
    Below is my js query.
    <script type="text/javascript">
    $(document).ready(function(){
    $Text = $("td .ms-vb2:contains('Pending')");
    $Text.parent().css("background-color", "#461B7E");
    var myelement = $Text.parent().parent();
    $Text = $("td .ms-vb2:contains('Rejected')");
    $Text.parent().css("background-color", "#4CC417");
    $Text = $("td .ms-vb2:contains('In Progress')");
    $Text.parent().css("background-color", "#EAC117");
    </script>

    Hi,
    The External List Web Part is not finish loading even after the page loaded, so we can use setTimeout method to delay executing your code.
    The following code for your reference:
    <script src="http://code.jquery.com/jquery-1.10.2.min.js" type="text/javascript"></script>
    <script type="text/javascript">
    $(document).ready(function () {
    setTimeout(SetHighLight,1000);
    function SetHighLight() {
    $Text = $("td .ms-vb2:contains('Pending')");
    $Text.parent().css("background-color", "#461B7E");
    $Text = $("td .ms-vb2:contains('Rejected')");
    $Text.parent().css("background-color", "#4CC417");
    $Text = $("td .ms-vb2:contains('In Progress')");
    $Text.parent().css("background-color", "#EAC117");
    </script>
    Best regards
    Dennis Guo
    TechNet Community Support

  • Workflow Status page - web part unable to load

    Has anyone seen "the web part was unable to load" in the workflow status page? Only some users are seeing this error but it's not consistent. What we noticed is that this error occurs only after transitioning from our Select to Manage Phase in
    our workflow. The same user that received the error could see the Workflow Status PDP correctly in the previous phases and stages too... So the issue doesn't appear to be permissions related. Anyone have any ideas?

    Hi,
    Try to update web from following after migration you need to perform below for web part
    $Web = get-SPWeb $Web.AllProperties | Format-Table
    $Web.AllProperties[“PWAURL”]=””
    $Web.Update()
    $Web = get-SPWeb 
    $Web.AllProperties | Format-Table
    $Web.AllProperties[“PWAURL”]=””
    $Web.Update()
    also from you last reply i understood that after removing custom field which are having graphical indicator and look up PDP is working as expected. It means look up and graphical indicator is creating issues.
    For Custom field which are having look up field if no value will be selected then it may give error its a expected behavior. It means you need to fill values in those custom field else you will face issue.
    For Graphical Indicator issue: Go through below links 
    http://social.microsoft.com/Forums/en-US/6cdfc2bf-1df7-4b26-a60f-220364093bda/pdp-webpart-and-graphical-indicators?forum=project2010custprog
    http://social.technet.microsoft.com/Forums/projectserver/en-US/75b8f6af-0060-4870-a50d-45d44b58cf5f/indicators-on-pwa-not-displaying-project-server-2010-dec-cu
    Hope it will help. Please let me know the out come. 
    kirtesh

  • Timesheet error (Only for one user on one task): This Web Part was unable to load

    Hi,
    We have a weird problem with Project server 2013.
    We are on the latest March CU 2015 update on MS Project and Project server.
    Problem:
    A resource(user) is being assigned to a task. When opening the Project with the MS Project client, you can see that the resource is effectively assigned.->OK
    The real problem is when the user goes to his timesheets. He don’t see this task anymore. Other users that are assigned to the same task can see this task in the Timesheets and can open it.
    When the user go back to a timesheet on a period where the task was working and visible, and he open that timesheets, he get an error: “This Web Part was unable to load”
    ULS log:
    [bucketHash:F0949503] There was an error while loading statusing information in the task details webpart for the specified project/assignment - Project UID: 231d4fab-e08b-44fb-8d49-04f7deff207d Assignment UID: 55e2c540-c8ae-42fa-8458-c1c6e98d98f8.
    This could be caused by an out-of-date link to the task details page, specifying invalid information, or it could indicate a potential problem with the project or assignment. Exception details follow. Type: 'Microsoft.Office.Project.PWA.StatusingLib.StatusingException',
    message: 'StatusingDataAccess.GetProjData could not find pre-cached data.  Attempted to load Guid - 231d4fab-e08b-44fb-8d49-04f7deff207d' and stack trace:    at Microsoft.Office.Project.PWA.StatusingLib.StatusingDataAccess.GetProjData(Guid
    docGuid)     at Microsoft.Office.ProjectDataEdit.Document.SvrDoc..ctor(Guid docGuid, ISvrDataAccess dataAccess, SvrDoc entDoc, SvrDoc resourcePool, Boolean bUseProjectResources)     at Microsoft.Office.Project.PWA.StatusingLib.StatusingDataEdit.InitSvrEditForDoc(Guid
    docGuid)     at Microsoft.Office.Project.PWA.CommonControls.TaskDetails.QueryData().
    [bucketHash:D7120B28] Webpart TaskDetailsPart failed in CreateChildControls. Unique ID: efbaf89c-01a5-e078-a033-bc18fe4d431c Microsoft.SharePoint.SPException: The Project and/or Assignment unique ID refers to a missing
    or invalid object.     at Microsoft.Office.Project.PWA.CommonControls.TaskDetails.QueryData()     at Microsoft.Office.Project.PWA.CommonControls.TaskDetails.OnLoad(EventArgs e)     at System.Web.UI.Control.LoadRecursive()    
    at System.Web.UI.Control.AddedControl(Control control, Int32 index)     at Microsoft.Office.Project.PWA.WebParts.PWAResiliencyPart.CreateChildControls() StackTrace:  at Microsoft.Office.Project.Server.Native.dll: (sig=ad0ca0fd-3c62-4564-9144-b6fd1f587187|2|microsoft.office.project.server.native.pdb,
    offset=3C16) at Microsoft.Office.Project.Server.Native.dll: (offset=1265D)
    We tried already to republish the whole project with the ‘Save for Sharing’ workaround
     without success.
    Someone any idea?
    Since we are migrated to Project 2013, we have a lot of problems with Project Server. Too late to go back
    L
    Thanks in advance,
    Johan

    Hi Johan,
    The assignment of this user on the given task might be corrupted. Try to remove the resource from the task, publish the project, assign the resource again and publish again the project. If it is not working, try to unpublish the task (column "publish")
    and publih it again.
    Hope this helps,
    Guillaume Rouyre, MBA, MVP, P-Seller |

  • Views for list web parts. Is there a way to allow users to change the view for a list web part without being redirected?

    Hi,
    I added a list view web part into a SharePoint 2013 page and it  is working as expected, except for one thing.
    I have enabled the option for the user to change the view for the web part. However when the user changes it, the user is redirected away from the page containing the web part, to the URL of the list itself.
    Is there a way to circumvent this issue so when the user selects a different view it updates the listing in the web part itself, rather than the user being redirected?
    Thanks in advance for the help.
    Regards,
    P.

    Hi,
    Please understand that one page can only display one view. You could find it out by observing the Address in browser when switching among different views for a list.
    If you would like to change the view of a list web part, you could go to web part propertites > Select view and configure it.
    In addition, here is a thread with similar requirement that might help:
    http://social.technet.microsoft.com/Forums/en-US/18dba190-5ee2-4b50-b005-1360d862f4ba/how-can-end-user-change-the-view-in-a-list-view-web-part?forum=sharepointgeneralprevious
    Regards,
    Rebecca Tu
    TechNet Community Support

  • ProjectCenter Webpart on another Site Collection "This Web Part was unable to load"

    Hi,
    Project Server 2013 on an url like http://domain.tld/pwa
    Trying to use the Project Center Web Part from another site collection, let's say http://domain.tld/sites/siteA
    I get the "This Web Part was unable to load" error and in the ULS I get Object Reference not set to an instance of an object classic error
    What am i doing wrong?
    Thanks!

    Thank you for the thoughts Michael but none of those worked for me.    
    What I have done so far is I have added the PWA features to the site which is what has made it work when logged in under the farm account.  
    So I have 3 account I am testing with
    1.) regular account with read only permissions to the Publishing page
    2.) Admin account that is in a group that is a site administrator to ALL sites
    3.) Farm account
    Currently it works for the Farm account and the Admin account but not the regular account.  I have added the regular account to the same group as the Admin account and will test when the change updates to see if I can access the information.  This
    will at least let me know that it is a Permissions issue which is what I think it is I just cant figure out which permission it would need to be. 

  • Cannot get URL web part filter to pass Parameter to List web part

    How do I wire an out-of-the-box URL web part filter to a SharePoint 2013 list (or "app" as renamed in 2013) web part when the list has a parameter?
    My SharePoint list uses a parameter because it needs a Contains filter, as in
         <Where>
          <Contains>
           <FieldRef Name="MyFieldName"/>
           <Value Type="Note">{MyParam}</Value>
          </Contains>
         </Where>
    The ParameterBinding is defined simply.
    <ParameterBinding Name="CohortParam" DefaultValue=""/>
    It has had Location="None" in the past, but another forum entry that I read suggested removing that.
    When I add the list (or "app" in SharePoint 2013) to a web part page and also add a URL Filter web part, the URL filter cannot see the parameter. The menu chain Connection >> Send Filter Values To >> [My List web part name] shows
    the dialogue. On the "Choose Connection" tab, I choose "Get Parameter Values From". Clicking the "Configure" button results in the "Configure Connection" tab having the message "The Consumer Web Part did not
    provide schema information".

    Hi Randy,
    You need to change the "MyParam" to "CohortParam", for parameterbinding element we need to add the location attribute as below codeline, then when we use the QueryString "CohortParam" with value in url, it will directly
    filter the list web part items without adding URL Filter web part.
    <ParameterBinding Name="CohortParam" Location="QueryString(CohortParam)" DefaultValue=""/>
    I attached my resutls as below image (also "MyParam" can be changed to "CohortParam" if you want), you can take a look.
    Thanks,
    Daniel Yang
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Daniel Yang
    TechNet Community Support

  • Cacade Sharepoint List Web Part

    hi,
    I created a custom view and insert 2 SP List Filter to filter the list content.
    The 2 SP List Filters are related, for example:
    Filter #1 - list of companies.
    Filter #2 - list of employees.
    I would like the Filter #2 to display only the list of employees for the selected company in Filter #2.
    How to accomplish this?
    Thank you.

    Hi Chuaky,
    Based on your description, I  understand what you want is that when you click a column in the list of companies, the list of employees display the 
    Corresponding items.
    You can implement your requirement  as the following:
    1.Create a companies list and create a column named company.
    2.Create a employees list and it also contains a column named company.
    3.Add the two lists into one page.
    4.On the page, click page ribbon --click edit , at companies list web part, choose edit web part--Connection--Send Row of Data to-- choose 
    employees--choose Get filter Values from--choose "Provider Field Name: company (from companies list), Consumer Field Name: company (from employee list)"--finish.
    5.The companies list web part will automatically add  a column named Select, click select, now what you want is finished.
    Besides the above, There are is a link which you can use as a reference:
    http://blogs.technet.com/b/rajbugga/archive/2013/04/25/creating-connected-web-parts-in-sharepoint.aspx
    Best  regards,
    Wendy Li
    TechNet Community Support

  • Business Data List Web Part

    Hi all,
    I am using the Business Data List Web Part to show and search data from external database as following link
    http://msdn.microsoft.com/en-us/library/office/ms493107(v=office.12).aspx
    But the Business Data List Web Part doesn't allow me to choose one or multiple items as other SP lists. I mean it doesn't have the CheckBox column. How could I have it?
    Thanks

    Hi,
    According to your description, Business Data List Web Part which data from external database doesn't have the check box column.
    I have done a test in my SharePoint 2013, and I met the same issue with you. Although I defined the edit action for the external content types, I still couldn’t edit a record from business data list web part.
    I would suggest you to use External List. In this case you will be able to Add/Edit/View item if your External Content Type has all operations.
    Here is a blog about how to Create an External List, you can use as a reference:
    http://community.bamboosolutions.com/blogs/sharepoint-2013/archive/2013/01/07/how-to-create-external-list-including-database-from-sharepoint-designer-2013.aspx
    beside, here is a similar post, you can use as a reference:
    https://social.technet.microsoft.com/forums/sharepoint/en-US/1a958e61-2c73-472c-83c7-443466aefcf8/edit-item-in-business-datra-list-webpart
    Best Regards,
    Lisa Chen
    Lisa Chen
    TechNet Community Support

  • List web part column alignment: how to change?

    I have a wide list web part but all the three columns are aligned to left. So there is a huge white area on the right. Was it like this also in 2010? Can I change it so that the columns would be spread also to right?

    Try these steps:
    Open the page containing the list web part in Edit mode
    Open the web part's settings panel
    Set the web part's width as desired

  • List web part -show search box (disappears)

    hello everyone, 
    I used list web part in my page and checked the show search box. but, when i save the page and publish, this search box disappears. 

    Hi Sultannur,
    Please check if it could help with switching to "Summary Toolbar" in web part property, or patch the latest cumulative update for SharePoint 2013 and check result again.
    http://social.technet.microsoft.com/Forums/en-US/sharepointgeneral/thread/fb263f21-b733-4d3b-a872-08aae8a65763/
    I hope this helps.
    Thanks,
    Wendy
    Wendy Li
    TechNet Community Support

Maybe you are looking for

  • Loop playback

    How do you have AA CS 5.5 begin playback again at the beginning of the song when it reachs the end of the song? Or a selected portion of the song continually play when it reaches the end of the selected part? I've searched the menus and can't find it

  • IPhoto not launching completely

    I haven't been able to access iPhoto for the past two days. I've been on the forums and seen others describe the same problem I'm having (see https://discussions.apple.com/message/15736289#15736289 ) Here's what is happening: 1) Open iPhoto 2) Appear

  • Passing pl/sql table to Java using Oracle JDBC and vice - versa

    A small article on the given topic with sample code and comments, to make code crystal: http://mukx.blogspot.com/2007/12/passing-plsql-table-to-java-using.html --Mukul                                                                                   

  • Webutil - Config and Jar Files

    Hi List, I am using Webutil for the first time .I have downloaded demo from OTN .WHich has pll,olb,jar ,dll files.I have gone through the manual following few things are still not clear 1.where to store/keep Webutil.config and how do we refer to that

  • Beach Balling after Logging In

    Hello, I have a 2009 13" MacBook Pro with OS 10.6.5 installed. Yesterday I restarted the laptop and now I cannot use the system. After I login the desktop appears but the dock is not the same as before (more and different icons) and I cannot use the