Ribbon List Tools Views Not Updating

Issue:
The list views on a page layout does not refresh the "Views" drop down list in the ribbon.
Version:
SharePoint 2010 Version 14.0.7106.5002
Steps to Recreate:
Create a new site collection using the "Publishing" template
Create 2 lists (Test 1 and Test 2)
Add a new view to each list (Test 1 -> View 1 and Test 2 -> View 2)
Create a page in the Pages library
Edit the page
Add the lists (Test 1 and Test 2) to any zone on the page
Save and close the page
Click anywhere inside the "Test 1" web part to enable the "List Tools" in the ribbon. Click on the views and note that you'll see "View 1" as you should.
Optional (Click anywhere outside of the webpart to clear the "List Tools" in the ribbon)
Click anywhere inside the "Test 2" web part to enable the "List Tools" in the ribbon. Note that the views shows "View 1" instead of "View 2".
Any help on this issue is appreciated. If you can't recreate this, please let me know what version of 2010 you are running to help figure out if this has already been fixed.
I have tested this in 2 separate environments. Both have the same issue.
Update:
I updated one of the environments to the latest (Dec 2014 CU), but the issue is still there in 14.0.7140.5000.

Hi,
Appreciate your detailed information to reproduce the issue.
By following your steps, I  tested the issue in SharePoint 2010, SharePoint 2013 and Office 365, and reproduced the exact behavior everywhere.
As my test, if you change the view of list in a webpart, the view will not refresh in the current page, and it will redirect to the relevant list. So to get different views of the list, I suggest you click the title of the webpart in current page to redirect
to the relevant list, and then change the view of current list via Ribbon.
Thanks for your understanding.
Best Regards
Vincent Han
TechNet Community Support

Similar Messages

  • Podcast List view not updated with iTunes 11.3.1.2

    Podcast List view not updated with iTunes 11.3.1.2
    Windows 7 Enterprise Service Pack 1 / Intel-i7 2.40 GHz / 8GB RAM / 64-bit
    iTunes 11.3.1.2
    After refreshing my Podcast list, some Podcasts with new episodes do not display the "Unplayed" blue dot.
    If the podcast "folder" is expanded by clicking the triangle, the new episodes are shown with a "Unplayed" blue dot.
    A new episode is shown in the My Podcast view, with the correct number of new episodes.
    The new episodes are displayed in the All Unplayed view.
    I've tried deleting all episodes and downloading new episodes from the iTunes Store.
    I've tried Unsubscribing and deleting the podcast, then Subscribing again from the iTunes Store.
    Neither attempt resolved the issue.
    I've seen this issue for a while, and was disappointed to find no change with the iTunes 11.3.1.2 update.

    it finally worked; got my Rush 24/7 downloaded, and it finally found my iPhone after switching from the USB 4 port Hub to a dedicated USB 2.0 slot on my laptop.

  • Movies list done in Notes updated to my Blockbuster account w/o my knowledge. Security issues?

    Movies list done in Notes updated to my Blockbuster account w/o my knowledge. Security issues?
    How was this possible?

    Ok, let me explain:
    One day at Blockbuster store I started to make a list on Notes app on my iPhone with movies that I want to add to my BB online queue when I get home (for DVD mail in delivery, just like Netflix used to be). All good so far. Few days later the list it's not in Notes anymore and when I checked my BB account the movies that were on the list I made in Notes are now in my BB queue. How was the list moved, the accounts are not linked, don't even think it's possible to link Notes with BB anyway.

  • List Tile View not working with include rule on iOS?

    hi Expert,
    I used the List Tile View with include rule in Agentry 6.0 on WinCE before to generate "selected" object list upon different conditions, e.g., assigning tasks based on scenarios.
    Currently, I am experimenting the same function on iOS tablet.
    On the start screen which is a detailed screen for main object, there is a List Tile View and an include rule. However, the objects in the tile list are not updated correctly when the output of the rule changes. Note that the same include rule works perfectly with a List View for the same collection.
    To my observation, the problem seems to associated with "update" of the tiles when result of include rule changes. For example, in scenario 1, there are 5 objects in the list; switching to scenario 2, there are 10 objects. From the No.6 to No.10, the objects are correct. The No.1 to No.5 are still the original 5 objects for scenario 1.
    When the user clicks on tiles, it makes the situation worse. Normally, a single object's tile will always be shown in the selected tile regardless which tile is selected from the list.
    My development environment is 6.0.40 and the client is 6.0.40 on iPad (iOS 7.1). I would like to know whether this is a known issue before I provide more details.
    Thanks.
    -Yang

    hi experts,
    When I asked the question on this list tile view refreshing issue, my dev environment is Agentry 6.0.38.
    In Agentry 6.0.40.1's release note, there is a fixed
    AG-25821  iOS 7 refresh issue with iPad tile list
    However, I currently have Agentry 6.0.42.1 on iPad (iOS 7.1.2). And my editor/server is 6.0.42.0. I still have the list tile view refreshing issue. The same rule can be used on list without any problem. But the list tile still has trouble on display the right set of objects.
    My question is is that fix related to the problem I saw?
    Thx.
    -Yang

  • View not updating in event receiver

    I have created a C# SharePoint 2010 Non-sandboxed project that implements the ListAdded event receiver. What I want to do is to check the new document library and add a number of site columns to it depending on the template. (I have discovered that the ListAdding
    event receiver is useless as the list reference is null at that point.)
    For each field, I run the following code whch successfully adds the columns. However, the code seems to have no effect on the default view.
    private void AddColumn(string name, SPListEventProperties properties)
    SPWeb web = properties.Web;
    SPField field = null;
    try
    field = web.AvailableFields[name];
    properties.List.Fields.Add(field);
    field.ShowInDisplayForm = true; // Saw these in an post about SP 2007. Not needed?
    field.ShowInEditForm = true;
    field.ShowInListSettings = true;
    field.ShowInNewForm = true;
    field.ShowInViewForms = true;
    properties.List.Update();
    var xx = field.InternalName;
    properties.List.DefaultView.ViewFields.Add(xx);
    properties.List.DefaultView.Update();
    catch (Exception)
    At the bottom of the method, examining properties.List.ViewFields in the Watch window shows that it is untouched by my code. What am I doing wrong? The UI confirms the fact that the the columns have been added and are available for adding to the view.

    Hi,
    According to your description, my understanding is you can’t add field to the default view in Event Receiver.
    I suggest you create a simple demo and try the code below to test whether it works properly.
    static void Main(string[] args)
    SPSite site = new SPSite("your site URL");
    SPWeb web = site.OpenWeb();
    SPList list = web.Lists.TryGetList("your list name");
    list.Fields.Add("Information", SPFieldType.Text, false);
    list.Update();
    SPView defaultView = list.DefaultView;
    defaultView.ViewFields.Add(list.Fields["Information"]);
    defaultView.Update();
    Feel free to reply to reply the test result.
    Thanks
    Patrick Liang
    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]
    Patrick Liang
    TechNet Community Support

  • Outlook 2013 Category view not updating after Exchange 2010 SP3 RU3

    After updating to Exchange 2010 SP3 RU3 last night, users who use categories view in Outlook 2013 are complaining that the view does not update. The alert is received in the notification area and the unread message count next to Inbox updates appropriately.
    The view can be force updated by switching between All and Unread, by using Reset View, or closing and opening Outlook.  It seems anything that forces a 'redraw' of the view will update it - except for the actual reception of email.  I easily replicated
    this issue.  For reference:
    Exchange 2010 SP3 RU3
    Windows 7 x64 Ent
    Outlook 2013 (15.0.4551.1004) 32-bit
    I do see that SP3 RU4 has been released, however the only change listed is a security patch.
    Thank you for any ideas.

    Hi, Everyone –
    This has been a known issue for a very long time – we have people at our workplace that are very disappointed since a feature as great as categorizing email (not using tasks) has become broken and has not even been considered to be fixed for
    over half a year.  It was not fixed in the updates for Patch Tuesday this week.
    I would like to confirm that this is an issue with Outlook 2010 and 2013 when running the latest Exchange 2010 and there is NO FIX
    – I have scoured the internet for a solution – all proposed "textbook" solutions do not work and I am positive that the issue can be recreated; however, everyone from Microsoft does not mention trying to recreate the issue at all. 
    The workaround of creating a rule to send new emails to a category could break other pre-existing rules and cause more frustration and wasted time for users/IT before and after the issue is fixed.
    Please fix this issue sooner than later, as the Categories view is completely broken and unusable at this point in time.
    Regards,
    IT Helper

  • Views, not updatable???

    Have run the script demobld.sql in schema SCOTT/TIGER and created the following view
    SQL> @C:\scripts\demobld.sql
    Building demonstration tables. Please wait.
    Demonstration table build is complete.
    CREATE OR REPLACE VIEW empdept AS
    SELECT emp.empno, emp.ename, emp.job, dept.deptno, dept.dname, dept.loc
    FROM emp, dept
    WHERE emp.deptno = dept.deptno;
    select * from user_updatable_columns where table_name like 'EMPDEPT';
    OWNER     TABLE_NAME COLUMN_NAME UPD INS DEL
    SCOTT EMPDEPT EMPNO NO NO NO
    SCOTT EMPDEPT ENAME NO NO NO
    SCOTT EMPDEPT JOB NO NO NO
    SCOTT EMPDEPT DEPTNO NO NO NO
    SCOTT EMPDEPT DNAME NO NO NO
    SCOTT EMPDEPT LOC NO NO NO
    I don't understand why the view is not updatable for the columns from the base table EMP, they should be. Does anyone know what the problem could be
    Cheers
    Fergus

    Are you sure that you have all the primary keys and foreign keys correctly defined on those two tables?
    SQL> alter table dept drop constraint pk_Dept ;
    Table altered.
    SQL>
    SQL> CREATE OR REPLACE VIEW empdept AS
      2  SELECT emp.empno, emp.ename, emp.job, dept.deptno, dept.dname, dept.loc
      3  FROM emp, dept
      4  WHERE emp.deptno = dept.deptno;
    View created.
    SQL>
    SQL> select * from user_updatable_columns where table_name like 'EMPDEPT';
    OWNER                          TABLE_NAME                     COLUMN_NAME                    UPD INS DEL
    SCOTT                          EMPDEPT                        EMPNO                          NO  NO  NO
    SCOTT                          EMPDEPT                        ENAME                          NO  NO  NO
    SCOTT                          EMPDEPT                        JOB                            NO  NO  NO
    SCOTT                          EMPDEPT                        DEPTNO                         NO  NO  NO
    SCOTT                          EMPDEPT                        DNAME                          NO  NO  NO
    SCOTT                          EMPDEPT                        LOC                            NO  NO  NO
    6 rows selected.
    SQL>

  • Materialized views  not updating

    I'm having trouble with getting a materialized view with fast refresh to update. I'm working between two schemas and have the global query rewrite privilege for both users. I've run the catrep.sql script to make sure it had been run and find that it has a lot of packages that don't compile, which I guess is expected as I'm not using Advanced Replication. I think the problem is that I can't get the dbms_snapshot package to compile so can't even update the view manually. Is there another script I need to run to make the materialized views work? Some other privilege or variable?
    I've granted permissions on tables, views, materialized views, triggers, and snapshots to both users.
    The log does get entries but never sends them to the views.
    I have a base table and a log on the table in schema 1.
    I have a materialized view in schema 2:
    create materialized view log on schema1.document
    tablespace app_mview
    with primary key
    ( list columns needed);
    create materialized view schema2.doc_mv
    pctfree 0
    tablespace app_mview
    storage (initial 128k next 128k pctincrease 0)
    refresh fast
    start with sysdate
    next sysdate + 1/1440
    as select * from schema1.document
    Does anyone know where my problem might be?
    thanks for any help

    I have temporary parameters, not in itit.ora but echoing the job_queue_processes is 10, job_queue_interval is 60.
    a sho err returns no errors.
    earlier I did not get anything new in dba_errors when trying to compile. Since I've rerun the catrep.sql I'm getting pls-00201 - identifier must be declared for a lot of dbms_snap, sys.dbms_alert, dbms_reputil2 etc. (package, package body, and trigger types) That is why I think there must be another script that should be run that I don't know about.
    I can't do a full refresh because the dbms_snapshot package will not compile. I believe it's possible that both full and fast will work once I get the dbms_snapshot package working.
    thanks for your help
    pat

  • Xcode Tools will not update under Mac OS X 10.7

    After upgrading to Mac OS X 10.7 on a new Mac Mini, I attempted to update my other software thru the App Store.  When I attempt to update Xcode I get the following message: "Xcode 4.0.2 requires Mac OS X 10.6 Snow Leopard.  Install the Xcode Tools version that supports Mac OS X 10.7 Lion."  I can find no update on App Store that will accomplish this task.  The one entry in App Store I can find for Xcode just attempts to install and produces the message above.  How do I get the lastest version?

    I figured out what MAS was minute or two ago... after searching over and over at apple.com in the downloads section and finding more than 150 hits at one time, nothing for xcode AND download AND lion (and also substituting 10.7 instead of lion). None of the 150 hits dealt with xcode itself.
    Another search for xcode (all by itself) came up with 4 items only talking about webobjects.
    It wasn't until I finally went to the main apple page, clicked on Mac, at the bottom Developer -> Mac Program, then at the bottom, XCode 4 developer preview, then I finally found "View in Mac App Store" (so I found out what MAS was).
    When I clicked the View link, Lion had to be told what app it should use to view the page!
    My download is apparently done now, so I think I'll go install it.
    What a chore! Had I been thinking, I could have just started up the app store from my dock! (I don't think I did that with Snow Leopard... which was another arduous project.) I rarely use the app store. I spend more time trying to figure out how to use what I've already got!
    Do I need to uninstall my xcode 3.x first or will it just be replaced?
    Thanks for the reply.

  • Content Viewer not updating

    I built a folio last week which displayed properly in Content Viewer.
    Since then, we have added more content to it. The build continued to work in Content Viewer, then all of a sudden, it stopped updating.
    I stripped the folio back to what it was before we added further content and it still wouldn't update.
    I left it during the weekend, then when I attempted to view it again this morning, Content Viewer still didn't offer an update.
    I've spent two hours this morning rebuilding the folio under another name. It appeard in the viewer and has given me updates every time I've added new content. Now, it has stopped offering updates and there is no way to test the folio, very frustrating and time consuming!
    I have attempted to download the folio in both the release version of Content Viewer, and in my own custom content viewer. Still nothing. The content is showing in Folio Producer, so I know it has succesfully uploaded.
    What is the solution to a non-responsive Content Viewer?

    hi Ragel,
    this doesn't seem to be happening to us any more.
    obviously we have another problem now...the certificates won't validate despite being walked through it by the dps tech team. this service is attrocious.
    we've produced two mags with adobe dps and both of them have missed the event they were designed for.
    WE WILL NOT BE USING ADOBE DPS AGAIN.

  • List to view not moved items

    is it possible to view the non movable items in the store. for example in walmart, they used to have many materials available in their shops. how can they find the list of materials that has not been saled or not moved from one store to another(stagnent). how to find the list of all materials that are not moved for a period of time. can we do that using cyclic counting
    thank you

    Hi,
    MC46 and MC50 are the standard Trasactions and there is no customization involved in doing mc46 and mc50.
    If you want to change somthing in this report as per your requirement, you have to take help from your Technical consultant to dovelop the report.
    Regards,
    Manish

  • KCLJ - Master Data upload - Purchasing views not updating

    Hi
    I have been trying to upload the external data file using KCLJ. The General view and FI view of the Business Partner is being created, but the Purchasing view is not being created. can anyone assist in how to upload this role?
    thanks
    Christopher

    Can you send us the structure that you are using? You may need to use the CHIND at certain places to upload values to certain tables.

  • Viewer not Updating

    I was working in Color (1.0.4, with FCP Studio 2). Things were going smoothly. Then, all of a sudden, the effects I'm applying to the footage aren't showing up in the Viewer. I can see that the effects are still there. I can see that the white balance and contrast changes are in place, as is a simple keyframing effect, but I simply can't actually see them in the Viewer when I switch between grades on any of my shots. I'm seeing the footage play back untouched. This is the first time this has happened and I'm hard-pressed to find out if I accidentally hit a keystroke that disables live previewing. In setup, everything is as it should be. I've quit and restart, but that solves nothing.
    Any help would be greatly appreciated.
    Cheers,
    Adam

    Okay, for about one minute, after switching the scopes view off and then back on, I was able to toggle my effects using Control-G, but then, for whatever reason... it stops working. I'm wondering if there are any preferences files for Color, as there are for FCP, which can be deleted and which would be regenerated once Color is relaunched that might address this buggy behavior.
    Help!

  • HtmlDataTable (seem to be) not updating HtmlSelectOneListBox model values

    I have a table with multiple rows of model objects in a list. One of the controls in the row is a selectone list box with its own list of selectItem objects
    On submit and back, any text controls I have in the table and also in the form are retaining their state and updating the model values
    But the selctone list box is not updating the models?
    If I follow the phase events I see the update model phase passing through. Not sure why the data in the ui is not submitted to the model
    If I locate the ui control and ask its selected value I see the changed value. But this is not communicated to the the model.
    Is there a known issue with a data table and select drop downs, especially for keeping the state.
    The backing bean is session scope where the data for the table is maintained as a list of pojo objects. The drop down values are kept in a list of SelectItem objects
    Thanks in advance for help
    Satya

    In short, my fault.
    I have the list items bound to a list. But the I haven't bound the HtmlSelectOneList box with a value binding. I was under the impression that the selected item from this list is kept with the item as in the case of html. But in this case it is kept with the parent via its value attribute.
    Now the state is kept as the form goes back and forth.

  • Time machine not updated

    I upgraded my hard drive and reinstalled from time machine backup that i had made just before i took out the old drive. All seems to be working fine but a couple of things have not been updated on time machine. Some recent amendments to pages doc werent saved, a new spreadsheet in numbers was absent and some of the desktop items I have deleted have come back. When i checked the backups on the finder, the most recent backup I made is there but within it some of the files are dated from december. I have nothing listed as "do not update" in the time machine preferences, my external drive is set to back up all. Any help appreciated, although I appreciate that i wont get these documents back now I would like to know what is going on with it for future back ups
    Thankyou

    Yes, its been creating back ups, if i look in the finder at the time machine there's a back up created for yesterday but the files within it dont seem to have been updated. So theres some folders there with yesterdays date, each with different times but the docs etc inside them are still the old versions, despite me having modified them and saved them yesterday. Will run that log thing you recommended, thankyou

Maybe you are looking for