List View still displays dates as numbers after 2.1 Hotfix

Hi
Just tried the List View component after installing Fix Pack 2.1 Hot Fix.   I  put a list view component on the canvas, selected 3 datesone for each header, changed the Appearance - Header to Date and then hit preview.  The first header worksshows the dates but the other two headers show numbers, not dates.
The documentation shows that this was fixed,  see below
ADAPT01260598 (List View displays
dates as numbers)
Description:
The header area of List View displays date values as numbers.
New Behavior:
This issue is resolved.

No, I was just wondering since I have a second device on TMobile US and haven't gotten the update. I loaded this OS almost a month ago when it leaked on the Internet.
1. Please thank those who help you by clicking the "Like" button at the bottom of the post that helped you.
2. If your issue has been solved, please resolve it by marking the post "Solution?" which solved it for you!

Similar Messages

  • How do I get the reminders, in list view, to display in date order?

    How do I get the reminders, in list view, to display in date order? I can't seem to get them to display in date order on either my ipad or iphone.
    Yes i know I can look at date view, but i don't like that view. I excepted the list view to display all reminders in date order.
    Thanks!

    You need to create a stringwriter, wrap it in a printwriter, then print to the printwriter, then convert the stringwriter to a string.
    Here's an example:
    StringWriter sw = new java.io.StringWriter();
    PrintWriter pw = new java.io.PrintWriter(sw);
    e.printStackTrace(pw);
    String strError = sw.toString();
    I hope this works. I didn't test the above code. I don't think I'm leaving anything out, but it's been a while since I've done it. Either way, it should get you on the right track to get what you need.
    Hope that helps.
    Michael

  • List view item display time is taking too much

    Hi,
         I am working in a sharepoint2013 project. In our project , list view item display time is taking too much in IE8 sp2013 64 bit environment. Can anyone help me to resolve this issue?
    Thanks,
    Nabhendu

    Hi Nabhendu,
     We had something similar with our SP2013 and IE8 32-bit. It seems that IE8 was in Compatible mode which make it IE7, which is unsupported by SP2013 due to HTML5.
    Issue : List view especially datasheet view which has been moved from ActiveX to HTML5 had very slow response on SP2013 and IE8 32-bit.
    Resolution : Try Chrome and see if its CSS/Masterpage or SP2013 issues performance issue.
    We deployed masterpage and css which was used in our SP2007 site with minor changes, but later we figured out that we need to make major changes in order to work with IE8 and SP2013.
    Try Indexing Columns.
    check how many look up columns are used.
    Hopefully that may help you..
    Thanks,
    Parth
    Thanks and Regards, Parth

  • Business Data List View ONLY Displays records - Cannot Edit them

    Using SharePoint 2010, I created an External Content Type. Data is coming from SQL Server. I created a new Read operation on my External Content type. I added a few filters in this Read View.
    I have created a web part page in which I placed a Business Data List Web Part. In Web Part properties I chose the VIEW in question. I can now filter my External List data and the Business Data List Web Part displays them. But I cannot edit these
    records!!!
    From the web Part properties window, I can ONLY choose Views that are created from READ operations. How do I allow users to edit data and save data in the original source (SQL Server).
    Mayank

    Below are the reference links on how to CRUD operations on external data using BCS
    CRUD operations using BCS using SharePoint designer
    http://zimmergren.net/technical/sp-2010-getting-started-with-business-connectivity-services-bcs-in-sharepoint-2010
    CRUD operations using BCS using Visual studio
    http://www.c-sharpcorner.com/uploadfile/anavijai/creating-external-content-type-with-crud-operations-using-business-data-connectivity-model-in-sharep/
    My Blog- http://www.sharepoint-journey.com|
    If a post answers your question, please click Mark As Answer on that post and Vote as Helpful

  • Why does my settings app still display a badge even after I've updated to iOS 7.0.4?

    I recently update to the latest iOS 7.0.4. My phone rebooted fine but when I went back to my homescreen the settings icon still displays a badge with the number 1 on it.
    When I go to Settings > General > Software Update it displays iOS 7.0.4 Your Software is up to date.
    I have also rebooted my phone a few times, and still the red badge displays. Anyone else having this issue?
    Thank you for your time!

    I know this happened to some users after the previous updates.
    You just have to learn to ignore it, I suppose, until the next update comes out and hopefully it disappears.
    If you are desparate to try and remove the badge, perhaps a restore from Itunes (restoring a fresh copy of 7.0.4) might remove it.

  • Flex Mobile List view only displaying correctly in debug build

    I've got a horizontal list view that I've created in my app. There is a button that changes it's layout and items between a small thumbnail grid layoutand a larger thumbnail single row layout.
    In my debug build, this works just fine every single time. However, once I create a release build and install it, the listview doesn't have anything in it initially. If I press my layout change button, the large images show up, but they are shown vertically instead of horizontally.
    And if I hit the button again, I see the smaller images, except that they are in white boxes the size of the larger images.
    Here's some screenshots:
    Here's my layout creation code:
    // setup the scroll view
                    scrollView.horizontalAlign="center";
                    scrollView.horizontalGap=20;
                    scrollView.orientation="columns";
                    scrollView.requestedRowCount=1;
                    scrollView.verticalAlign="middle";
                    scrollView.verticalGap=20;
                    // setup the grid view
                    gridView.horizontalAlign="center";
                    gridView.horizontalGap=20;
                    gridView.orientation="columns";
                    gridView.requestedRowCount=2;
                    gridView.verticalAlign="middle";
                    gridView.verticalGap=20;
    Here is my layout swap code and my item adding:
    var imageClass:Class;
                    if(view == 1){
                        listy.layout = gridView;
                        imageClass = getDefinitionByName(getQualifiedClassName(new gridImg())) as Class;
                    }else{
                        listy.layout = scrollView;
                        imageClass = getDefinitionByName(getQualifiedClassName(new scrollImg())) as Class;
                    var x:ArrayList = new ArrayList();
                    var im:BitmapAsset;
                    im = new imageClass() as BitmapAsset;
                    var i:BitmapImage = new BitmapImage();
                    i.source = im;
                    x.addItem(i);
                    i = new BitmapImage();
                    i.source = im;
                    x.addItem(i);
                    i = new BitmapImage();
                    i.source = im;
                    x.addItem(i);
                    i = new BitmapImage();
                    i.source = im;
                    x.addItem(i);
                    i = new BitmapImage();
                    i.source = im;
                    x.addItem(i);
                    i = new BitmapImage();
                    i.source = im;
                    x.addItem(i);
                    i = new BitmapImage();
                    i.source = im;
                    x.addItem(i);
                    i = new BitmapImage();
                    i.source = im;
                    x.addItem(i);
                    listy.dataProvider = x;
    And in case it's relevant, here's my embedded image code:
    [Embed(source="assets/logo.png")]
                [Bindable]
                public var gridImg:Class;
                [Embed(source="assets/logo2.png")]
                [Bindable]
                public var scrollImg:Class;
    Any help would be appreciated.

    The red arrow shows the floating bar in Reader X, outside the visible area of the screen

  • Problem in displaying data onto Form after selecting from table.

    Hi there,
    I keep hitting this error when I tried to display the data after the selection from table. Using backing beans w data control to do it
    Err: java.lang.ClassCastException: java.util.Collections$SingletonList cannot be cast to java.lang.Integer
    Table used ArrayList to retrieve out the wanted data. E.g uses A object
    To display: selected data to retrieve the selected row to display as a read-only form layout below the table. E.g. need to get A.getName() to match with B object B.getName() then uses the B object to retrieve out the data.
    Anyone know how to do it?

    Hi
    use the follwing code
    int rowcount = wdContext.node<Name>().size();
    while(rs.next())
    IPrivate<ViewName>.I<Name>Element tabnode =wdContext.node<Name>().get<Name>ElementAt(i);
    tabnode.nodeAuthoriseNode().invalidate();
    tabnode.nodeAuthoriseNode().addElement(0,authele);
    tabnode.nodeAuthoriseNode().setLeadSelection(0);
    wend
    Regards
    Dhinakar

  • Name Sort -List View- Not Displaying  As Expected

    If I create several folders inside a main folder that is sorted by name - ascending - I get odd results in terms of the sort order - it seems to be dependent upon the length of the string - or actual numeric real numer (4444 is bigger than 888) in addition to the alphabetical aspects - especially when dealing with numbers only. For example - this is the order I get with the following folder names:
    1
    7
    8
    77
    888
    4444
    11111
    Q: What is a logic behind this odd sorting order? is there any way to control it? I would prefer that it would be more alphabetical - for example anything that starts with the number one would be together like:
    1
    11111
    4444
    7
    77
    8
    888 ..... this type of thing etc.....

    Thanks for the info Malcolm & Tom.
    From: How Finder lists items that are sorted by name (Mac OS X)
    Location: http://docs.info.apple.com/article.html?artnum=300989
    Note: If you select all these items in the Finder window (Command-A), copy their names to the Clipboard (Command-C), and then paste them into a text document (or email), they will appear in a slightly different order.
    Q: What is the logic behind this 'slightly different order'?

  • Query View not displaying data according to Query

    Hi,
    I have a query with current cal week vaiable set for 0CALWEEK. A Query View is created on that but everytime we have go and maually refresh the query view and save it to show the current week. Is there any setting in WAD, Queryview or the query to pick the data automatically from Query directly?
    Thanks

    Hi,
    Restrict the 0CALWEEK in the query with the variable 0CWEEK which is the current week. Then, create the view and the web template will automatically takes the current week.
    Edited by: P R on Feb 15, 2011 5:06 PM

  • List View Justification incorrect after sorting

    I am using a list view to display some data in Xcelsius SP3.  I have set the justification to 'Left' for the List View object and when the object is first display all numbers are correctly aligned.  However, if a sort is done by one of the column headings some numbers appear to shift further left than others.  This causes the data to look misaligned.  Anyone else experiencing this or have an idea of what may correct it?
    Thanks

    I downloaded and installed FixPack 3.4 for Xcelsius 2008 SP3 and re-created the SWF file but still had no luck.  The labels of the List View still do not align correctly when sorting or even scrolling in the table.  I have not yet opened a Support note in marketplace but plan on doing so soon.  I will update this message with the note # and any responses that I receive. 
    I have to believe with as much as the list view component is used that someone else has had this happen to them.  Any input would be greatly appreciated.
    Thanks,
    Scott

  • List view selector  should display from various fields

    Hi experts,
           I have list view   where the data in excel is
    year
    quarter
    month search
    date search
    Application
    stime
    etime
    duration
    betime
    bduration
    tduration
    remark
    But i want to display Year, month quarter, date, Application and remark..
    I dont want to display  betime, beduration,tduration...
    How to achieve this?
    Thanks

    Hi,
    Are you getting this data from database then sort the order in DB, If you are dealing the data only with dummy data in excel level then you can manually do that. Hiding particular column is not possible in listbox component level.
    Or else push the unwanted column to the right and select only the desired column in listview.
    --SumanT

  • SharePoint 2010 : How to display ALL Version History of a list item's multiline text box in a same list as a list view column?

    In SharePoint 2010 , I have version history enabled multiple text box 'issue details'.  Users mainly uses Data Sheet view and it does not show all version history of that multiple line text box, is there anyway we can display list view column in
    data sheet view to display all version history?
    2) If we can not display in datasheet view, in standard view, it should display all version history instead of just a link  to -view all entries'
    I have found one article here and it posts to use below line of code in sharepoint desinger
    <SharePoint:AppendOnlyHistory runat="server" ItemId="{$thisNode/@ID}" FieldName="Issue_x0020_Details" ControlMode="Display"></SharePoint:AppendOnlyHistory>
    WHen I use this line of code , it displays multiple line of same version history instead of each, please help.

    Hi
    Greetings. Hope it helps 
    https://social.technet.microsoft.com/Forums/sharepoint/en-US/d1be5434-7dc9-4941-bf1d-8c12d7e6a155/display-version-history-in-list-view-column?forum=sharepointcustomizationlegacy
    Please remember to click 'Mark as Answer' on the answer if it helps you

  • PE 9 and 10 Help PDF Invalid List View Descriptions

    Bottom line: Has anyone reported on these problems, and, if so, what is being done about them?
    Until proven otherwise, I believe that Premiere Elements 9 and 10 Help PDF requires editing of its List View Descriptions which are appropriate for at least version 8.0/8.0.1, 7, and 4, but not versions 9.0/9.0.1 and 10.  Please refer to the Help PDF Projects/View Clip Properties
    for version 10:
    http://help.adobe.com/en_US/premiere...B-312BB3F13B11
    for version 9:
    http://help.adobe.com/en_US/Premiere...355c-7f98.html
    Problems in this regard for Premiere Elements later than version 8.0/8.0.1 and not for versions 8.0/8.0.1, 7, and 4:
    1. List View Properties display in text for export video file, no Data Rate Analysis graphs
    2. List View Columns, no ADD to add your own columns, so only Adobe built in ones, and none of the Adobe built in ones, like Client, allow for editable text.
    Comments:
    Data Rate Analysis
    I had read somewhere that these graphs appear for tape based rather than non tape based imports. Mini test: Premiere Elements MPEG4.avi import and DV AVI export of the MPEG4.avi. Results: Version 8.0/8.0.1 Properties for import in text format (file properties) only and Properties for export in text format (file + export properties) as well as display of Data Rate Analysis graph. Versions 9 and 10 Properties for import (file properties) and for export (file + export properties), both import and export text only.
    List View Columns
    1. If I look at the project.prel WordPad documents and the Client Column information there in each, I do not see any difference.
    2. If I create a Premiere Elements 8.0/8.0.1 project, set List View column choices Comments and Client, type in the comments and client information, and save/close/and re-open the project in:
    a. Premiere Elements 9.0/9.0.1, the Comments columns and its information will not appear; the Client column will appear, but its information will not be editable. (The 9.0/9.0.1 version does have Client, but not Comments, as a built in choice under Edit Columns)....the latter might explain why no Comments column except...
    b. Premiere Elements 10, neither the Comments nor Client columns and their information will appear. (The 10 version does have Client, but not Comments, as a built in choice under Edit Columns.)
    One of the Potential Problems:
    It is well accepted that, if you edit a project from an earlier version in a later version, you cannot go back to the earlier version for editing. So, one potential problem that I see in all this is the loss of this type of information on upgrading from 8.0/8.0.1 and earlier....
    a. If you create a Premiere Elements 8.0/8.0.1 or earlier project which includes Comments and Client information in these List View Column choices, you will lose all that information in version 10 and have only non-editable Client information in version 9.
    And, yes we have filed an Adobe Feature Request/Bug Form on this one.
    Any comments about what I may have overlooked in trying to get those Help PDF List View Descriptions to work for me would be appreciated.
    Thanks.
    ATR

    I definitely agree that the Help files could use some updating, Tony.

  • Stop Finder headers from moving list view

    I'm new to mac so thanks for advice! Everytime I resize a finder window list view the headers (date mod, size kind) keep moving to the right. Then when I resize the window smaller I lose headers ,have to enlarge and drag back to the left. More annoying when I open a folder almost everytime my headers are out of frame... ugh... slowing me down.

    Welcome to the Apple Support Communites and to your new Mac.
    When you resize a window to make it wider it will operate in two ways:
    - While there is a scroll bar at the bottom of the window it will reveal
      the hidden columns to the right.
    - Once the scroll bar is gone it will expand the name field.
              (The name field is the most variable one, given you can have really long names.)
    If you don't like the width of any of the columns you can grow or shrink them by grabbing the faint bars between the headers.
    When you open a sub-folder, its window will inherit the attributes of the parent window.
    If you resize a sub-folder window and use the back-arrow, the parent folder will inherit the child’s attributes.
    The next time you open a top-level folder it will remember the attributes from its previous use.
    If you want to change which and how columns are displayed, open a folder and go to View > Show View Options.
    Hope this helps.

  • Disappearing of Web Parts and a custom List Views containing XSL

    Hello!
    Recently, on the sites with Web Parts
    containing XSL or on List Views (.aspx-pages) containing
    XSL a message appears:
    Unable to display this Web Part. To troubleshoot the problem, open this Web page in a Microsoft SharePoint Foundation-compatible HTML editor such as Microsoft SharePoint Designer. If the problem persists, contact your Web server administrator.
    Correlation ID:98bcff3d-5cc0-42b6-819c-41d36a4aa335
    And so it is as long as I do not take
    certain actions: indicated below as I
    struggled with this. In a day or two it
    repeats.
    Web Parts and List Views without XSL
    are displayed normal.
    Related LOGs for such Web Parts and List View containing XSL:
    Error while executing web part: System.IndexOutOfRangeException: Index was outside the bounds of the array.
    at Microsoft.Xslt.MethodCollection.ResolveMethodDef(Int32 tokenNum)
    at Microsoft.Xslt.MethodCollection.GetMethodInfo(Int32 methodNumber)
    at Microsoft.Xslt.STransform.GetCompiledTransform()
    at Microsoft.SharePoint.WebPartPages.BaseXsltListWebPart.LoadXslCompiledTransform(WSSXmlUrlResolver someXmlResolver)
    at Microsoft.SharePoint.WebPartPages.DataFormWebPart.GetXslCompiledTransform()
    at Microsoft.SharePoint.WebPartPages.DataFormWebPart.PrepareAndPerformTransform(Boolean bDeferExecuteTransform)
    Herewith:
    1. Updates have been installed on the server
    with a further rebooting.
    2. No doubt the correctness of XSL:
    previously these web parts and list views were displayed.
    And it is displayed in SP Designer.
    My actions for troubleshooting (a day or two
    it reappears):
    For Web Parts containing XSL:
    - Server rebooting does not help.
    - Resaving of Web Part settings
    helps (Web Part menu -> Change Web Part -> OK).
    - Sometimes resaving of Web Part settings does not help. In this case restarting of Application Pool 'SharePoint - 80' with further
    resaving of Web Part settings helps.
    For List Views containing XSL:
    - Server rebooting does not help.
    - Server updating with futher rebooting
    helps.
    - Restarting of Application Pool 'SharePoint - 80'
    helps.

    Hi,
    According to your post, my understanding is that Web Parts and List Views with XSL were displayed unnormal.
    The error message is caused by that the time allowed for doing the XSL transformation was exceeded.
    In SharePoint 2010 the XSL transform cannot take longer than 1 second.
    There is now a hot fix available from Microsoft to resolve this issue,  the solution are at this page:
    http://support.microsoft.com/kb/2639184. 
    In addition, you can install  sharepointfoundation2010-kb2597136-fullfile-x64-glb.exe and use the PowerShell
    script below to make the change to the Timeout value
    If the issue still exists, you can perform an AppPool recycle in IIS.
    More information:
    http://englando.wordpress.com/2012/01/05/unable-to-display-this-web-part-xsltlistview-and-xsltdataview-web-part-issues-in-ie/
    http://hsdhaarsma.blogspot.in/2013/06/indexoutofrangeexception-in.html#!/2013/06/indexoutofrangeexception-in.html
    Best Regards,
    Linda Li
    Linda Li
    TechNet Community Support

Maybe you are looking for

  • How do i create a list of favorites

    I would like to create a favorites list. How can I do that??

  • SQL Query Result with Random Sorting

    Hi Experts, My Oracle Version : Oracle9i I have three tables which are given below, Table Name:     check_team team_id      team_code 100          A 101          B 102          C 103          D Table Name:     check_product product_id     product_cod

  • How can I redownload Photoshop CS6?

         I purchased photoshop around a year ago and downloaded it digitally on my old computer and since then, I have bought a new computer and have no idea as to how I can get the version I have already purchase downloaded  onto my new computer (I do n

  • Delphi doesn't compile the examples for DIO32HS

    Delphi doesn't compile the examples for DIO32HS Some libraries appear to be required, but there are none supplied According to the manual, one ActiveX should be sufficient. What version is the source provided ?

  • Auto Levels in Adjust Panel

    Has anyone noticed that the Ajust Panel in iWeb has an 'Auto Levels' button at the bottom, but the same Adjust Panel in iPhoto 06 does not? I normally run all my photos through Photoshop, just to use the auto -levels, -color and -contrast tools (I'm