Views- icon and list, use as defaults issues

Going from Tiger to Leopard, this new operation of views is different. Ok, just a statement. I have noticed that all of a sudden (I think going from 10.5.3 to 10.5.4), the "use as defaults" button doesn't really seem to do anything. If I have the main HD window open, in icon view, and then open view options and select "use as defaults" (after making some change in order for that button to be clickable), I can go back to other windows and they are still at list view. I made sure the "always open...." is not selected in those other windows. I thought the "use as defaults" was suppose to override and change every window there after to whatever you had set when you clicked use as defaults.
I also notice that if I open the main HD window and have it in icon view, then open the applications window and move it from icon to list and close it, every other window I open will be in list view.

Nope, once you set a window's settings, it'll retain it until you change it. The *use as defaults* only pertains to the window you're in and any folders you haven't already opened.

Similar Messages

  • Msql and o8i - using a default value in an insert

    1. In an Oracle 8i Enterprise DB I have a primary key in table FOO called FOO_ID, it's SQL description is:
    FOO_ID NUMBER DEFAULT TO_CHAR(sysdate, 'HH24MMSSMMDDYY') NOT NULL
    1.5 I test via TOAD inserting a record into the DB without specifying FOO_ID, but specifying other values in the table row. I commit the data. When I commit the table correctly fills in FOO_ID with a time/date stamp per the above definition.
    2. I run wtgpack and create an application which uses this table. I check the SQL code to make sure the column definition is copied to the snapshot which will be the basis for Oracle 9i Lite mobile DB on my laptop.
    3. I run msync.exe and get the DB.
    4. I run msql to make sure the data replicated ok. It did.
    5. I run an INSERT statement not specifying a primary key hoping that the default will be used. For example,
    "INSERT INTO FOO (FOO_TYPE) VALUES ('Test Type')";
    I get the following error from msql:
    [POL-3221] null key in primary index
    The questions is, why isn't the O9iLite DB using the default value when creating the new record/row?
    Thanks,
    Z

    Danny is spot on, but a little elaboration for the beginner:
    childValue == "yes" asks whether these two are the exact same String object. There are times when that's true, but it's unlikely. Instead, use String equals() ( childValue.equals("yes") ) to ask whether the two have the same value.
    With the simple class Danny suggests:
    class Vessel {
       private boolean assessed;
       private int stenosis;
       public boolean isAssessed() { return assessed; }
    }All you need in the loop is
    Iterator vessels = vesselAssessed.values().iterator();
    while (vessels.hasNext()) {
       Vessel vessel = (Vessel) vessels.next();
       if (vessel.isAssessed()) {
    }

  • Detect what the default edit form is for a document library and list using jquery

    Hi,
    So what I have done is with some jquery made it that when a files are dragged and dropped into a document library and there is a required field such as "Metadata" the EditForm.aspx opens up for the user to fill in the required column. I am building
    the url up from what I have found in SharePoints DragDrop.js file. This is all working perfectly I just need to find a way to dynamically find what the default edit form is for that document library as I have just hardcoded like this...
    g_currentControl.strSiteUrl + "/" + this.ListName + "/Forms/EditForm.aspx?ID=" + id
    So I need a way to figure out what the default edit form is instead of hard coding like this in case someone creates a custom_editform.aspx or something for one of the lists.
    Thanks

    You can get it by hitting this REST end point via JQuery:
    http://weburl/_api/Web/Lists(guid'YOURLISTGUID')/Forms
    Chris Givens CEO, Architecting Connected Systems
    Blog Twitter

  • What is the best practice concerning View Objects and List of values

    Hi,
    Let's take these two tables :
    Market_Descriptions
    Id
    Name
    Desc
    Language_Id
    Languages
    Id
    Code
    Desc
    Now, if I am generating these business components with the help of the wizard, I will be having two entities and two views.
    If I am creating a list of value on the field Language_Id in Market_Descriptions table, showing the language code, everything works fine as long as this is drop as a Form but not as a table or read-only form.
    What is the best practice for me to include/replace the language_id with the language code, since it is more user-friendly, on a read-only form or a table?
    Thanks.

    Hi,
    Always have LOV on the field which we want show it on UI. Suppose based on below scenario, If you want to display Langaugae Description on UI, have LOV on Desc but not on Language_Id. Even though we can set display attribute in LOV configuration, but it will work only in forms but not in tables. In tables it will show language id instead of description.
    Have LOV on Desc and make one more join with location Id in LOV configuration, so as soon as we select desc in LOV, location_id will be populated.
    here is the join condition inside LOV
    Languages.Desc = ViewAccessor.Desc
    Languages.Id - ViewAccessor.Desc
    Hope this will help you.
    Dileep.

  • View Stack and List

    hi :)
    i want to display a viewstack, depending on the list item
    chosen.
    i played with it, but can't get it to work properly.
    please helllllp
    [code]
    <mx:Model id="MyQuestions" >
    <states>
    <state label="asdfsadfsfd?" data="test test2"
    id="test"/>
    <state label="fdghdgdasgf?" data="test asdfasdftest2"
    id="test2"/>
    </states>
    </mx:Model>
    <mx:List id="QAList" width="100%" color="#004080"
    dataProvider="{MyQuestions.state}"
    change="this.selectedItem=List(event.target).selectedItem"
    click="myViewStack.selectedChild=[this is where i want to pass in
    the ID from my XMLList]" />
    <mx:HBox >
    <mx:Button id="searchButton" label="Search Panel"
    click="myViewStack.selectedChild=search;"/>
    <mx:Button id="cInfoButton" label="Customer Info Panel"
    click="myViewStack.selectedChild=custInfo;"/>
    <mx:Button id="aInfoButton" label="Account Panel"
    click="myViewStack.selectedChild=accountInfo;"/>
    </mx:HBox>
    <mx:ViewStack id="myViewStack" borderStyle="solid"
    width="100%" height="80%">
    <mx:Canvas id="test" backgroundColor="#FFCCFF"
    label="Account sadfInfo" width="100%" height="100%">
    <mx:Label text="Account asdfasd Info"
    color="#000000"/>
    </mx:Canvas>
    </mx:ViewStack>
    [/code]
    or maybe you can suggest something else?
    i could display it in regular text boxes, but the issue i'm
    having is that i can't put HTML tags in the XMLList... and i need
    my text formatted.
    Thanks!

    This should be what you want...
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="
    http://www.adobe.com/2006/mxml"
    layout="absolute"
    width="100%"
    height="100%"
    xmlns:ns1="*">
    <mx:Script>
    <![CDATA[
    import mx.events.*;
    import mx.controls.*;
    //Click event handler for the main button.
    public function clickHandler():void {
    var selectedItem:String =
    QAList.selectedItem.data.toString();
    myViewStack.selectedChild=this[selectedItem];
    ]]>
    </mx:Script>
    <mx:Model id="MyQuestions" >
    <states>
    <state label="Select search Canvas" data="search"/>
    <state label="Select custInfo Canvas"
    data="custInfo"/>
    <state label="Select accountInfo Canvas"
    data="accountInfo"/>
    </states>
    </mx:Model>
    <mx:List id="QAList" click="clickHandler();" width="100%"
    dataProvider="{MyQuestions.state}" height="107"/>
    <mx:HBox x="0" y="75">
    <mx:Button id="searchButton" label="Search Panel"
    click="myViewStack.selectedChild=search;"/>
    <mx:Button id="cInfoButton" label="Customer Info Panel"
    click="myViewStack.selectedChild=custInfo;"/>
    <mx:Button id="aInfoButton" label="Account Panel"
    click="myViewStack.selectedChild=accountInfo;"/>
    </mx:HBox>
    <mx:ViewStack id="myViewStack" borderStyle="solid"
    width="100%" height="312" y="105">
    <mx:Canvas id="test" label="Account sadfInfo" width="100%"
    height="325" cornerRadius="5" backgroundColor="#ffff00">
    <mx:Label text="Account asdfasd Info"/>
    </mx:Canvas>
    <mx:Canvas id="search" backgroundColor="#00ff00">
    <mx:Label x="2" y="2" text="search"
    fontWeight="bold"/>
    </mx:Canvas>
    <mx:Canvas id="custInfo" backgroundColor="#ff0080">
    <mx:Label x="2" y="2" text="custInfo"
    fontWeight="bold"/>
    </mx:Canvas>
    <mx:Canvas id="accountInfo" backgroundColor="#00ffff">
    <mx:Label x="2" y="2" text="accountInfo"
    fontWeight="bold"/>
    </mx:Canvas>
    </mx:ViewStack>
    </mx:Application>

  • Deploying Icons and Images Used by Forms6i

    I'm looking for a solution that uses jar files for Icons; which will be easy for deployment
    http://docs.oracle.com/cd/B14099_19/web.1012/b14032/configure009.htm I'm looking for the same for forms6i

    Hi,
    >
    I'm looking for a solution that uses jar files for Icons; which will be easy for deployment
    http://docs.oracle.com/cd/B14099_19/web.1012/b14032/configure009.htm I'm looking for the same for forms6i
    >
    jar implies java.
    Forms 6i implies NO java.
    Cheers,

  • Detecting when Assembler used a Default Font vs. the one specified

    Greetings:
    I am trying to develop a process that will add page content to pdf documents.
    I have DDX written to perform the functions I need.
    One area that I need to address is when the font-family in the DDX is not found by LiveCycle, and LiveCycle uses a default font.
    I have set the Job Log Level to 'Finest',.
    I have run the job with a valid font specified, as well as a bogus font.
    For both successful jobs and unsuccessful jobs, I see the same messages:
    I see a listing of the default font (Minion Pro).
    I see a listing of my input command.
    I do not see any indication that a default font was used instead of what was specified.
    Is there any way to trap this situation?
    Thanks
    Mark

    Greetings:
    I am trying to develop a process that will add page content to pdf documents.
    I have DDX written to perform the functions I need.
    One area that I need to address is when the font-family in the DDX is not found by LiveCycle, and LiveCycle uses a default font.
    I have set the Job Log Level to 'Finest',.
    I have run the job with a valid font specified, as well as a bogus font.
    For both successful jobs and unsuccessful jobs, I see the same messages:
    I see a listing of the default font (Minion Pro).
    I see a listing of my input command.
    I do not see any indication that a default font was used instead of what was specified.
    Is there any way to trap this situation?
    Thanks
    Mark

  • Old Firefox's icon and item Name (not blue one) in Application has disappeared suddenly from the screen. How can I retrieve this?

    When I clicked "Finder" and "Application", Firefox (old one, not new blue one) icon and Name used to show up in the screen, but no longer. How could I bring them back? There are no difficulty
    in running computer, but I cannot update Firefox. Please advise.
    Thank you.

    Unfortunately I tried that and it didn't work. Thanks for the help though. I tried to uninstall and it said I couldn't because the file is corrupt or something, but I think I finally got it uninstalled and/or deleted or whatever, but now I try to reinstall/download it again from the beginning and I can't. No matter what I do I can not get Firefox working again. No matter how many times I try to redownload it. Any other suggestions?

  • The Control A key is not working. I cannot multi-select my songs. I'm not sure if it is the problem with iTunes 10.6.1.7 or my PC settings encounter issues. Also, i cannot find Album Artwork online using iTunes and i cannot select any view form but List.

    The Control A key is not working. I cannot multi-select my songs. I'm not sure if it is the problem with iTunes 10.6.1.7 or my PC settings encounter issues. Also, i cannot find Album Artwork online using iTunes and i cannot select any view form but List.

    The Control A key is not working. I cannot multi-select my songs. I'm not sure if it is the problem with iTunes 10.6.1.7 or my PC settings encounter issues. Also, i cannot find Album Artwork online using iTunes and i cannot select any view form but List.

  • Why did my calendar view suddenly change? Using iOS 7.1 and I've been using this version for a few weeks with no problem with my calendar. Now the view has changed and I can't view a list mode without seeing the month too

    Why did my calendar view suddenly change in iCal? I've been using ios7 fôr a few weeks now with no problems. Suddenly, without any updates or anything, the calendar view changed and I can no longer view it as a list without having the entire month seen as well.

    Hey Gattypyle,
    Thanks for the question. You simply need to go back to Day/Week view, then tap the list-view icon once more.
    Calendar at a glance - iPhone
    http://help.apple.com/iphone/7/#/iph3d110f84
    View a list of events. In month view, tap to see a day’s events. In day view, Tap the to view a list of events.
    Thanks,
    Matt M.

  • How to change to Icon View for some folders but and List View for the rest

    I've had a bear of a time with View options in my folders. I'd like some folders to be in Icon view and other to be in List view. For what ever reason if I change the view option of one folder it changes the view option of EVERY folder. What can I do to make this happen?

    I was about to ask the same. I'd like to use icon view normally, but list view for folders containing lots of text documents. It looks like the solution is using View > Show View Options, change the folder to the view you want, and then tick the box at the top fo the dialogue for "Always open in __ view".
    Message was edited by: Adrian Bolt
    Message was edited by: Adrian Bolt

  • I used to have an ? icon at the upper portion of my screen to click for Facebook, or check email,or fox news or other things too. That ?toolbar isn't available any more?? I have checked View-toolbars and can't find it there

    Below my web browser and above the Firefox tabs I used to have icons to click on for checking: Facebook, email, news, weather etc they are not there anymore. I have gone to View/Toolbars and not there. Is this available anymore?

    I would expect it to be the bookmarks toolbar you ar looking for, so ensure that is visible. Your menu toolbar is the one with the '''view''' menu item on it.
    # Use View -> Toolbars -> Customise
    # Ensure "Bookmarks Toolbar Items" is on the bookmarks toolbar
    * you may need to drag it back on
    * CARE, you could try the restore default option, but that may result in your own customised items being re-arranged
    The facebook, email, weather etc, items are likely to be none standard items you created in your own bookmarks. You may need to open the bookmarks library and reinstate those items in the bookmarks toolbar, or even recreate them.

  • List View Threshold and using OR in list view

    I've read the white papers, searched the blogs, but I don't quite understand why I am getting the 'only showing latest results...' yellow bar due to list threhshold with following scenario:
    List has 9000 items (so above threshold).
    ALL 4 columns below are indexed!
    I have a view called 'My Items' such that:
    Show all items when
    UserColumn1 = [Me] OR
    UserColumn2 = [Me] OR
    UserColumn3 = [Me] OR
    UserColumn4 = [Me]
    All of the 4 user columns are indexed, but I'm thinking that since I have OR's in they query vs ANDs that it is causing the view to trip up and display the 'only giving you recent...' yellow filter bar.
    Any thoughts?
    Am i correct in my thinking that because of the OR's, SharePoint has to go back to the database and pull data 4 times.
    There are only 20 items where UserColumn1 is me, 10 where UserColumn2 is me, and 3 where UserColumn3 is me and only 1 item where UserColumn4 is me, so there are only total of 34 items, so I know its not because the first indexed column is returning more
    than 5000 items.
    Any advice/links to using 'OR' in view is much appreciated, I couldn't find anything.
    Herschel

    The problem is the "or" and the list view threshold.  When using an OR the query has to retrieve ALL the items to make sure it gets all the Or clauses.  Once it has all the items then it filters based on the "or".  If you
    use an"and" you can be sure that all the results will be represented by the result set that is derived from the first column.  So the query can be limited to that and then trimmed of additional results after retrieval.  When using Ors there
    is no way to limit the query Set.  What you want it to do is limit the results to 4 query sets that it then combines.  It doesn't work that way.  When using 'or' you will always try to retrieve ALL the results whether the columns are indexed
    or not.
    Paul Stork SharePoint Server MVP
    Principal Architect: Blue Chip Consulting Group
    Blog: http://dontpapanic.com/blog
    Twitter: Follow @pstork
    Please remember to mark your question as "answered" if this solves your problem.

  • Thumbnail Icons in list and Column View

    I am trying to find out how to change icons for media files (pics/movies) from generic file type icons to thumbnail previews of the file. I Know its possibel because one of my folders (photos/iphoto/origionals.....)shows up in the column and list view as thumbnails. NONE of my other folders do though. I have tried messing with the view options, and i know you can view thumbnails in the ICON view in finder but this is not what i want to do. I also know that in column view you can preview files in an extra column, also not what i want. So anyone know how to make all icons in all finder views into thumbnails?
    Thanks

    The "icons" you are seeing are QuickLook icons that show a preview of the content in the file. AFAIK, there is no way to disable it. However, you can go into Finder>Preferences>Advanced and enabled the Show all file extensions option to help distinguish between filetypes.

  • I have Windows Professional and I used to be able to move the curser over the Firefox icon in the taskbar and it would give me a telescoped view of all open tabs, now it just shows the tab that I'm currently viewing. How do I fix this?

    I have Windows 7 Professional and I used to be able to move the curser over the Firefox Icon in the taskbar and it would show me a telescoped view of all open tabs, now it just shows the tab that I'm currently viewing. How do I fix this?

    Hey MikeDo,
    Do you have the option checked for ''Show Tab Previews in the Windows Taskbar''? If not, just go to ''tools->options->tabs.'' You can find more information on what each of these settings do in the Knowledge Base article [[Options window - Tabs panel]].
    Hopefully this helps!

Maybe you are looking for

  • Customer service / complaint email required please

    Hi. Does anyone out there know an email address from Apple Customer complaints.... trawled through the websites and I can find every other contact detail apart from a complaint one! Thx

  • How many ATVs can be connected to one itunes library?

    Hi, I want to share one iTunes library, on 8 Apple TVs, of-course not simultaniosly. Does anybody know is it possible?

  • Linking to a detail page

    I have the letters A to Z in a master page and would like to link to a detail page, where all companies are displayed whose names begin with A, or B depending which letter the user has clicked. On the detail page (compdetail.php) I have that code: $q

  • Query not executing with "Insufficient Shared Objects Memory Available"

    Hi , We have few Reports on a Multi provider, which are working fine earlier both in Web Analyzer and  Bex Analyzer. Now we have created an Entry in the MULTIPROVIDER  Hint table  as we have data based on Fiscal Year in 3 different cubes. This went f

  • Sales-Marketing

    Hi Experts, am a total novice here in this knowledge domain. Please could someone give me an brief idea how these modules: Sales, Marketing and purchase order relate to each other from cost perspective  and how they are passing info among them. many