Sub-Folder View Icons Missing in List View (Finder)

Since upgrading to Lion, the arrows in Finder for viewing sub folders has disappeared from Finder in list view and cover flow. At first, I just figured it was another nice feature of OS X they decided to kill off, but I was looking at my boyfriend's computer, and his still has the triangle icons, and he's using Lion.
I've tried a few things to try to fix it, but nothing seems to help. Using the Command + right arrow key combination causes some weird glitch folders to appear below the folder I'm trying to view the contents of. The names of those folders is always stuff like "Folders", "Applications", "PDF Documents", among others. Here's a screenshot of my Finder view, and those odd folders:
Does anyone know how to fix these issues? Thank you for any replies. =)

Wow, Woolgatherer was right on on this one! What was bugging me, besides not having the up/down sort arrow buttons in the columns, was I was backwards on the arrangement. In essence, when I had the arrangement in "Kind," the items were from "z to a" instead of "a to z." The arrangement view is nice to look at, because it separates the types of items into groups, but you can not reverse the order quickly.
If you do as Woolgatherer says, and turn off the "Arrange by" to none, and then the folders display the up/down arrows to go in alphabetical order from top to bottom or bottom to top. Once you toggle the header arrow, then you can actually go back to "Arrange by" to "Kind," and it is in the opposite order. What I mean by this, if you sort from the header "a to z" and then go to the Arrange by "Kind," it is now in the order of "z to a." This is very weird.

Similar Messages

  • Excel View instead of SAP list view - Quota master

    We have a more extensive quota maintenance process and looking of simple user interface. Mass maintenance (MASSD) of quota and complex enhancements are not sufficient since we have some filtering requirements using product attributes.
    - I am trying to use the Excel layout instead of the SAP list view in the Quota master
    - I selected the 'change layout' from Quota item maintenance screen
    - I went to 'view' tab and selected 'Microsoft Excel' as prefered view instead of 'SAP List view'
    - I selected one of the standard Excel templates provided (sap_om.xls or sap_mm.xls)
    - I save layout
    - Now the Excel interface is available for modifying the Quota item data. I want to know how to use this interface.
    - I change the data in the Format, Header or the Raw data sheets (change from 75:25 split to 70:30). When I click save (I clicked save in the Excel view as well as the overall SAP Quota screen, I get a ‘Data saved’ message. But the data goes back to original values (75:25).
    - I need inputs on how to make this Excel interface work since it is not saving entered values

    Hi guys, Any luck on my query?
    My question is generic on using the Microsoft Excel view instead of the SAP list view in GUI. Any one used this and have insights on how to make this work?

  • List View : Opening folder in folder changes modified date in list view

    Since my office upgraded me to 10.5.4, when I flip open a folder in List View, then flip open a sub-folder, the modified date in the original folder changes to now. Opening subsequent folders again changes the modified date of the folder above it. I do not remember this happening in Tiger, and since part of my job involves finding and archiving old files, this is driving me crazy. Can I stop it?
    Jeff Work

    That's interesting, and probably why the original poster had the same issue, but it does not work that way for me with Leopard 10.5.5.
    In list view, the .DS_Store does not get updated when I flip down the folder. The .DS_Store file only gets updated if I open the folder in icon view. That makes sense because the .DS_Store file stores the relative position of the icons in the window.
    However, when I go back to list view, even though the .DS_Store file is updated to the current data and time, the Date Modified of the parent folder does not change.
    This different may be caused by some setting you are using in Finder that most people do not use, or maybe because of some other Mac OS X feature such as File Vault (which I do not use), or maybe some third party software that modifies Finder functionality. I don't know...

  • Create a folder that inside is in list view and smallest font?

    I hope this is simple,
    Using Applescript I want to be able to make a folder That when I open it, is in the list mode and using the smalles font (8). Could be useful if I can even specify where on the screen i want it to open and the size of that window. list and font are however more important.
    Matt

    Running the above script as you are aware works with no problems, I tried adapting it to me exist script where applescript creates the folder earlier so I referenced it with the same script and although no error there is no change on the folder.
    I've tried to shorten the script here
    set thePrefix to ""
    set theWeekNumber to ""
    set theMonth to ""
    set thisDate to current date
    ---- your first week of the year is the third Monday of August
    set theWeekNumber to ((thisDate - (my augustThirdWeek(thisDate))) div 604800) + 1
    on augustThirdWeek(d) -- get the third monday of August
              copy d to tDate
              tell tDate
                        set {its day, its month, its time} to {15, 8, 0} -- start at August 15
                        repeat 2 times
                                  repeat while (its weekday) is not Monday
                                            set its day to (its day) + 1 -- add one day (range 16 ... 21)
                                  end repeat
                                  if d < it then -- this date is older that the third Monday of August
                                            set {its day, its year} to {15, (its year) - 1} -- subtract one year
                                  else
                                            return it
                                  end if
                        end repeat
              end tell
    end augustThirdWeek
    set theWeekNumber to theWeekNumber
    repeat
      --set theWeekNumber to do shell script "date -v+133d +%V"
              set theMonth to do shell script "date '+%m %B'"
              set quartersToUse to choose from list {"AW12", "AW13", "SS12", "SS13", "XMAS_2012"} with prompt "Choose the quarter."
              try
                        if theWeekNumber = "" then error
                        exit repeat
              on error
                        set thePrefix to "INVALID ENTRY!  "
              end try
    end repeat
    set bhsIcon to (((path to pictures folder) as text) & "Icons:Bhs.png") as alias
    set bhs2doIcon to (((path to pictures folder) as text) & "Icons:Bhs2do.png") as alias
    -- some more folder icons created here
    set theBhs to "BHS_WK" & theWeekNumber
    set theBurton to "Burton_WK" & theWeekNumber + 1
    --some more folders created here
    tell application "Finder"
              set theBHSFolder1 to make folder at (path to desktop) with properties {name:theBhs & theEnd}
              my (setCustomIcon from bhsIcon to the result)
              set desktop position of theBHSFolder1 to {50, 150}
              set theBHSFolder2 to make folder at (path to desktop) with properties {name:theEnd2 & theBhs}
              my (setCustomIcon from bhs2doIcon to the result)
      -- Some more like above
      --then I inserted your bit here
              set bhs2DoWindow to container window of theBHSFolder2
              set properties of theBHSFolder2 to ¬
                        {current view:list view, position:{100, 100}, bounds:{100, 100, 400, 300}}
              tell list view options of bhs2DoWindow to set properties to {text size:10}
    end tell
    --Then a custom Icon creation here
    to setCustomIcon from imageFile to destination
              Set the icon of a destination file item to the image contained in imageFile
                        parameters -                    imageFile [various]:          an imagefile for the icon (Finder alias or POSIX text)
                                                      destination [various]:          a destination item to set to the icon (Finder alias or POSIX text)
                        returns [boolean]:          true if icon is set, false otherwise
              set imageFile to imageFile as text
              if imageFile starts with "/" then -- check for POSIX file
                        set imageFile to imageFile as POSIX file as alias
              else
                        set imageFile to imageFile as alias
              end if
              set destination to destination as text
              if destination does not start with "/" then -- check for POSIX file
                        set destination to POSIX path of destination
              end if
              try
                        tell application "Finder" -- copy the icon image to a temporary file
                                  (duplicate imageFile to (path to temporary items) with replacing) as alias
                                  set tempImage to quoted form of POSIX path of the result
                        end tell
                        set tempResource to quoted form of (POSIX path of (((path to temporary items) as text) & "TempResource"))
      do shell script "/usr/bin/sips -i " & tempImage -- add a Finder icon to the image
                        do shell script "/Developer/Tools/DeRez -only icns " & tempImage & " > " & tempResource -- get the icon resource
      do shell script "/usr/bin/file " & quoted form of destination -- determine the destination file type
                        if the result contains "directory" then -- folder
                                  set theTarget to quoted form of (destination & "/Icon" & return) -- create Icon\r file
                                  set Command to "rm " & theTarget & "; " -- remove any existing custom icon
                                  set Command to Command & "/Developer/Tools/Rez -a " & tempResource & " -o " & theTarget & "; " -- add resource file to a folder
                                  set Command to Command & "/Developer/Tools/SetFile -a V " & theTarget & "; " -- make it invisible
                        else -- file
                                  set Command to "/Developer/Tools/Rez -a " & tempResource & " -o " & quoted form of destination & "; " -- add resource to a file
                        end if
                        set Command to Command & "/Developer/Tools/SetFile -a C " & quoted form of destination -- set custom icon attribute
      do shell script Command -- do it
              on error errmess number errnum -- oops
      log errmess
      -- display alert "Error " & errnum message errmess buttons {"OK"}
                        return false
              end try
              try -- remove temporary files
      do shell script "rm " & tempImage & space & tempResource
              end try
              tell application "Finder" to update (destination as POSIX file)
              return true
    end setCustomIcon

  • Blank File Icons in Small List View

    Hi,
    I got an annoying problem with my Mac.
    In Finder, it's not going to show the right icons while I'm in the small list view.
    If I switch to the bigger list view or the symbol view, everything appears correct.
    I just reinstalled Yosemite but it's still be there.
    I attached some screenshots.
    I hope you can help me.

    Here the Screenshots:

  • Icons missing in plan view

    icons missing in plan view

    Hi,
    Can you please share a screen shot to explain what icons are missing in the plan view ?
    Regards,
    Abhishek Maurya

  • Days missing from list view if no event entered in iCal

    if i have no event entered on a particular day, the list view of iCal doesn't display the day. how can i still see the day in list view?

    The List view reveals the day/days with an event scheduled only. If there isn't an event scheduled for a particular day, that day will not be shown when using List view.
    The List view is a list of scheduled events only.

  • Export and Print icons missing from report viewer

    I'm currently embedding crystal within a wicket application in which I'm making use of the getHtmlContent() method to retrieve the report's HTML.  For whatever reason, I'm not able to get either the export or print icons (on the top left side of the viewer).  Is this because I'm using the getHtmlContent() method or do I have something misconfigured somewhere?  Setting the setHasExportButton(true) and setHasPrintButton(true) on the report viewer object has no effect. 
    If I run the same report using the generated JSP outside of my application (within tomcat), I see the export/print buttons.  I notice the JSP makes use of the processHttpRequest() method.  Any help will be greatly appreciated.
    Thanks!
    Louis

    Hi Louis
    - The getHtmlContent() method handles the user's request to generate the HTML for the report and returns the HTML as a String.
    Note: Either the getHtmlContent method or the processHttpRequest method can be used to handle the user's request to generate the HTML for the report, depending on how you write your JSP. If the viewer's content is displayed more than once, then the getHtmlContent method is more efficient, because the request is processed once and the resulting HTML string can be used multiple times. In this case, you must set the content type of the HTML, as recommended in the table. Additionally, using getHtmlContent sets setOwnPage to false and disables exporting and printing.
    - The setOwnPage(true) and  processHttpRequest() method should be used if you want the export and print button to appear in the report viewed through Crystal Report Viewer.
    Following is the snippet of code which shows you how to use these 2 methods.
    //Get the IReportSource object from sesion and pass it to the viewer
         IReportSource reportSource = (IReportSource)session.getAttribute("reportSource");
    Create the viewer and render the report -
         //create the CrystalReportViewer object
         CrystalReportViewer oCrystalReportViewer = new CrystalReportViewer();
         //set the reportsource property of the viewer
         oCrystalReportViewer.setReportSource(reportSource);
         //set viewer attributes
         oCrystalReportViewer.setOwnPage(true);
         oCrystalReportViewer.setOwnForm(true);
         //set the CrystalReportViewer print mode
         //oCrystalReportViewer.setPrintMode(CrPrintMode.ACTIVEX);
         oCrystalReportViewer.setPrintMode(CrPrintMode.PDF);
         //process the report
         oCrystalReportViewer.processHttpRequest(request, response, getServletConfig().getServletContext(), null);
    Hope this helps you .
    Thanks
    Soni

  • List view threshold error in list view web part, column indexing not working

    Hello all,
    I have a list with about 8000 items and the list view threshold is set at 5000. I want to filter the list by a certain column ("Title", single line of text) so I indexed that column. I can filter the list (AllItems.aspx) however if I put the list
    on a web part page (in the form of a list view web part), I can't filter by that column. Shouldn't the indexed column allow this?
    Note that the threshold will not be increased and a daily time period to bypass the threshold is in place, but I'm looking for a solution for any time of they day.
    Thanks!

    Thanks for your response. Your suggestion did work! It got me thinking and I took some time to investigate this column indexing stuff a little closer. I had an "ah-ha" moment.
    Regardless of whether the column has an index or not, dynamic drop down filtering in a list view web part will only work if the list view has fewer items than the threshold. This is the critical point I was missing. I was assuming the index would allow for
    drop down filtering.
    Thanks again!

  • How to view my music in list view in iTunes 11?

    I am largely unimpressed with the new-look iTunes11. Before, I could very quickly scroll through my large music library in list view, but scrolling through the library is very sluggish, as iTunes has to wait for all of the album art to load.
    There is a list view option for the movies, but not for music. Am I missing it somewhere?

    I know how to view the sidebar. But I'm talking about viewing my songs, artists, etc. in LIST view, i.e. without the album art showing.
    The LIST view is available for movies in the sort options at the top of the window, but not in the music section.
    EDIT: I figured it out! By clicking on the "SONGS" sort option, then arranging by artist, it is like viewing the music library in list view.

  • Using "View Selector" in the List View Web Part, changes the web part page to the view selected's page.

    Hi,
    I am relatively new to Web Parts pages.  I created a page with list view web part and a Infopath Form Web Part, which are connect via the "Get Form From" option.  My users would like to be able to use views dependent on what
    they are looking for.  So I created different views.  However, when I select the view from within the Web Part, it changes the web part page to the list view page.  I must be doing something wrong.  How do I configure the list view to show
    the selected view and results within the existing "list view web part"?
    Thanks,
    Dwayne

    Hi
    Lindali,
    Sorry, but this has not been answered to my liking.  The "List View Web Part" has the ability for the user to select the view from within the web part, so there you should be able to select a different view and have it appear within the same web part. 
    Does anyone know how to complete this task?
    Thanks,
    Dwayen

  • Podcast feed broken in two in "Podcast" view, but complete in "List" view iTunes 11

    Hi all,
    Today I updated to iTunes 11 on my Windows 7 laptop. When I went to update some podcasts I subscribe to I noticed that there were two lists for a couple of the different podcasts inthe defaualt view.
    I thought perhaps there was something wrong with my .xml feed and spend a long time checking my feed file. Nothing looked odd, and I didn't remember seeing two feeds in prior versions of iTunes.
    At this point I clicked on "Lists" at the top. There was only one album for the podcast AND all episodes were listed there, where they should be. Seems like a bug in the new GUI for iTunes 11.
    Has anyone else experienced this issue? The podcast I'm subscribed to is: http://www.recastweb.com/podcasts/Weekly.xml http:///www.recastweb.com/podcasts/Luke.xml is experiencing the same odd display too.

    I'd like to have this list view back as well.
    It was usefull for choosing a podcast based on date and/or length.
    I will submit feedback on this and suggest all others who want it back do the same.
    http://www.apple.com/feedback/
    (Apple does not monitor these forums, but they do read their feedback !)

  • Any way to view iTunes playlist in list view??

    Is there any way to view my playlists in a list view?  Viewing by album art is incredibly cumbersome and takes forever.

    This is what I heard:
    Playlists show up as album art until you tap on one to reveal the list of songs in the playlist. That is the way that the new Music App works in iOS 5.

  • Missing "Compact List View" in View menu in v7.7

    Observed behavior:
    my contacts are in compact view
    I want to switch them to regular view
    I don't see the option in the View menu (see screenshot)
    Attachments:
    Screenshot 2015-05-20 11.20.21.png ‏60 KB

    Ah, I found it:  "show pictures"... which is a little counter intuitive.  I guess Mac has unique options to Windows.

  • SP2010 Bug? Cannot change List View in Ribbon. List view drop down not responding?

    In all of my Libraries I have 3-5 views (standard and custom), I cannot select them from the Ribbon thought, the drop down button does not respond when clicked (nothing happens):
    When going with the mouse over the drop down button it shows "javascript:;" in the IE status bar.
    The only way to change the view, for the moment, is to do it via Library Settings and set the selected view as default.
    Is this a know issue? Is there any settings that I`m missing?
    Many thanks!
    Cheers,
    marek 

    Following is missing in master page, add this and it should work.
    Where to add?? see the appropriate place from V4 master.
    <Sharepoint:UIVersionedContent runat="server" UIVersion="4">
        <ContentTemplate>
         <Sharepoint:SPNavigationManager
         id="TreeViewNavigationManagerV4"
         runat="server"
         ContainedControl="TreeView"
         CssClass="s4-treeView"
         >
           <SharePoint:SPLinkButton runat="server" NavigateUrl="~site/_layouts/viewlsts.aspx" id="idNavLinkSiteHierarchyV4" Text="<%$Resources:wss,treeview_header%>" accesskey="<%$Resources:wss,quiklnch_allcontent_AK%>"
    CssClass="s4-qlheader" />
            <div class="ms-treeviewouter">
           <SharePoint:DelegateControl runat="server" ControlId="TreeViewAndDataSource">
             <Template_Controls>
            <SharePoint:SPHierarchyDataSourceControl
             runat="server"
             id="TreeViewDataSourceV4"
             RootContextObject="Web"
             IncludeDiscussionFolders="true"
            />
            <SharePoint:SPRememberScroll runat="server" id="TreeViewRememberScrollV4" onscroll="javascript:_spRecordScrollPositions(this);" style="overflow: auto;height: 400px;width: 155px; ">
              <Sharepoint:SPTreeView
             id="WebTreeViewV4"
             runat="server"
             ShowLines="false"
             DataSourceId="TreeViewDataSourceV4"
             ExpandDepth="0"
             SelectedNodeStyle-CssClass="ms-tvselected"
             NodeStyle-CssClass="ms-navitem"
             SkipLinkText=""
             NodeIndent="12"
             ExpandImageUrl="/_layouts/images/tvclosed.png"
             ExpandImageUrlRtl="/_layouts/images/tvclosedrtl.png"
             CollapseImageUrl="/_layouts/images/tvopen.png"
             CollapseImageUrlRtl="/_layouts/images/tvopenrtl.png"
             NoExpandImageUrl="/_layouts/images/tvblank.gif"
              >
              </Sharepoint:SPTreeView>
            </Sharepoint:SPRememberScroll>
             </Template_Controls>
           </SharePoint:DelegateControl>
            </div>
         </Sharepoint:SPNavigationManager>
        </ContentTemplate>
       </SharePoint:UIVersionedContent>

Maybe you are looking for