Disable Saved Searches in Safari?

Hi
After the 4.2.1 update I have not been able to disable saved searches in safari. 
I use Google and every time I hit the search bar on the upper right corner in Safari, I get a list of past searches..I cannot remember how to turn it off. 
I tried the "do not save searches" in the google preferences/settings to no avail. 
Any info would be great. 
Thanks!

Thanks!
That clears the history but it seems though after I do another search the search term stays in a new list for next time. I remember there was a way that Safari would not save your searches..I tried the Google preferences section but it's not sticking...I'm "saving" the changes also and restarting the iPhone but no luck. Thoughts?
Thanks again!

Similar Messages

  • Disable Google search history in Safari

    Is there a way in Safari on a 3GS to disable storing search history? Every time I select the search box, I am presented with a list of several weeks worth of searches. I know I can clear the history if you access Settings-->Safari-->Clear History but I don't want to do that continually.

    Hello and Welcome to Apple Discussions. 
    You could try a different browser like Privately:
    http://www.sax.net/iphone/privately
    mrtotes

  • Can't delete my saved passwords from Safari 5.1 on Snow Leopard 10.6.8

    When the bugs in 1Password initially disabled that application on Safari 5.1 I started saving manually entered passwords on Safari while 1Password was being fixed. Now that 1Password is working I want to remove the saved passwords on Safari as a secirity precaution.  But they won't delete; not individually, not as a group. When I click Remove All the passwords all turn blue as if about to be deleted en mass but don't disappear. Trying it by highlighting one and clicking Remove doesn;t work either.  Any suggestions?

    You are much better off using the Mac OS X app Keychain Access which is pre installed on your Mac instead of a third party password manager.
    This link shows the results of a Safari / 1Password forum search which reveals all the problems 1Password causes for Safari.
    https://discussions.apple.com/search.jspa?resultTypes=&dateRange=all&peopleEnabl ed=true&q=1Password+Safari&containerType=&container=&containerName=&username=&ra nkBy=relevance&newq=1Passwod+Safari*
    .Now that 1Password is working I want to remove the saved passwords on Safari as a secirity precaution.
    Your passwords are not stored in Safari per se, they are stored in Keychain Access.  /Applicatiions/Utilities. Trying to use both is causing a conflict.

  • How to implement saved search delete feature in af:query

    Hi,
    I have implement MDS for af:query. However, delete button in "Personalized" window of af:query is still being disable.
    My test flow is the following:
    1) fire a search on the query component and then save it as "savedSearch1".
    2) then try to personalize it. Observed that "Delete" button in Personalize window is being disable. Not able to delete "savedSearch1"
    My question is: Is there a way for me to enable the "Delete" Button at the personalized window so that user can delete the saved search?
    I have af:query component with the following code:
    <af:query id="qryId1" headerText="#{uiBundle.SEARCH}" disclosed="true"
    value="#{bindings.KanbanCardSummaryVOCriteriaQuery.queryDescriptor}"
    model="#{bindings.KanbanCardSummaryVOCriteriaQuery.queryModel}"
    queryListener="#{KanbanSummaryBean.queryListener}"
    queryOperationListener="#{bindings.KanbanCardSummaryVOCriteriaQuery.processQueryOperation}"
    resultComponentId="::pc1:t1" maxColumns="2" rows="1"/>

    Hi,
    Does anyone knows the answer for this question?
    Thanks,
    Hong

  • ADF : af:query saved search issue

    hi
    Please consider this example application from Andrejus Baranovskis
    http://jdevsamples.googlecode.com/files/UserCustomizationsSession.zip
    (which he refers to from his blog post "User Customizations for Duration of Session in Oracle ADF 11g")
    I see some strange behaviour with a saved search in this scenario:
    (a1) open the UserCustomizationsSession.jws file in JDeveloper 11.1.1.1.0 and configure the "Hr" database connection in the Application Resources panel
    (a2) right-click the main.jspx page in the ViewController project and click Run
    (a3) on the "Index" page click the "Employees" button
    (a4) on the "Employees Form" page, without entering any search values, click the "Search" button, which causes (all) the rows to show in the table
    (a5) in the "Firstname" search field, enter "a" and click the "Search" button, which causes rows with "a" in their first name to show in the table
    (a6) click the "Save..." button
    (a7) in the "Create Saved Search" dialog, enter "my-a-search" in the "Name" field and keep the default values for the checkboxes ("Set as Default" checked, "Run Automatically" checked and "Save Results Layout" unchecked) and click "OK", which causes "my-a-search" to show up in the "Saved Search" dropbox
    (a8) click the "Close" button
    (a9) on the "Index" page click the "Employees" button, which causes the "Employees Form" page to show up with the results of "my-a-search"
    (a10) in the "Saved Search" dropbox, select "EmployeesViewCriteria" and click the "Search" button, which seems to cause the table to refresh but still showing what seems to be the result of "my-a-search"
    (a11) try to change the value of the "FirstName" search field or use the "Reset" button, each time the result of "my-a-search" shows up
    question
    (q1) Why don't I get all the rows in step (a10) instead of just "my-a-search"?
    many thanks
    Jan Vervecken

    Hi Jan,
    seems related to bug 8817108 - AF:QUERY DOES NOT WORK CORRECTLY WITH MUTIPLE VIEW CRITERIA
    I'm copying below an except of the SR with possible workarounds:
    The key point in the modified testcase is that we created a method in the
    Application Module that resets the View Criteria of the View Object:
        public void unapplyViewCriteria() {
            String[] allVC = getViewObj1().getAllViewCriteriaNames();
            for (String vc: allVC )  {
                System.out.println("Unapply View Criteria: " + vc);
                getViewObj1().removeApplyViewCriteriaName(vc);
        }This method was published as a client interface and added to the bindings of
    the Page definition (by a drag&drop from the DataControl palette):
        <methodAction id="unapplyViewCriteria" RequiresUpdateModel="true"
                      Action="invokeMethod" MethodName="unapplyViewCriteria"
                      IsViewObjectMethod="false" DataControl="AppModuleDataControl"
                      InstanceName="AppModuleDataControl.dataProvider"/>This created a button that we updated as the following:
            <af:commandButton
                              text="Go To Other Page AND Unapply View Criteria"
                              disabled="#{!bindings.unapplyViewCriteria.enabled}"
                              id="cb1"
                              actionListener="#{bindings.unapplyViewCriteria.execute}"
                              action="otherpage"/>This button will execute unapplyViewCriteria() and then navigate to the other page.
    That's a first solution, where we unset the View Criteria just when navigating.
    Another option is to unapply the ViewCriteria when the af:query has completed its query.
    This can be done by the method we exposed in the aforementioned Note.
    The method processQuery() in the backing bean is:
        public void processQuery(QueryEvent queryEvent) {
             * add your PreQuery code here
             * invoke the real processQuery
            invokeMethodExpression("#{bindings.NameStartsWithMQuery.processQuery}",
                                   Object.class, QueryEvent.class, queryEvent);
             * add your PostQuery code here
            // Workaround for Bug 8817108
            BindingContainer bindings = getBindings();
            OperationBinding operationBinding = bindings.getOperationBinding("unapplyViewCriteria");
            Object result = operationBinding.execute();
        }where we first execute the standard processQuery, and then unapply the View Criteria.
    If memory serves me well, customer opted for WA 2.
    Regards,
    Didier.

  • Remove Personalization at User Level - Saved Searches

    All,
    There is a problem in the Saved Searches. We are on 11.5.10. The page immeditely throws error when a custom view is created using "Save Search" button.
    It says,
    ## Detail 0 ##
    java.lang.NullPointerException
    at oracle.apps.fnd.framework.webui.OADataBoundValueCustomization.getValue (OADataBoundValueCustomization.java:191)
    I am not able to revert this view created through save search. I tried by setting the Disable Self-Service Personal to Yes at that user level where i created the view and bounced apache. But the error still exists.
    Is there any means like by "Functional Administrator" responsibility where these views can be removed?
    Thanks,
    Padmaja

    Pl see if a similar issue reported in MOS Doc 859190.1 (Personal Worklist Returns NullPointerException When 'Disable Self - Service Personal' Is Set To Yes) can help
    HTH
    Srini

  • Adf:Query - Saved Search issue

    Hi all,
    Using Jdev 11g. R1(Version 11.1.1.7.0) , I am getting the following error on returning to my UI's Advanced Search page after I add a field from 'Add Field" button and save it as a default search.
    *"Would you like to save the changes you made to the layout before proceeding?"*
    Any suggestion for debugging this issue.
    Thanks in advance..

    I believe you are encountering a usability issue. When you receive, "Would you like to save the changes you made to the layout before proceeding?", it is question not an error. You added a field and must have changed something in the results table (added a column, reordered column), and it is asking if you want to save the changes to the results layout table with your saved search. I think that may be what is going on here. I am not sure if you can disable this question, but you may be able to change the message itself to be worded differently.

  • With input disabled field search help is not working.

    Hi Web dynpro abap Gurus
    Please help me on below requirement.
    If i make a input field disable then the attach search help is not working. Is there is any way by which
    I can make input field disabled and search help will also work for this field.
    I really need help on this, Please help me.
    Many thanks in advance.
    Sandeep Sharma
    09971995045

    Hi
    I dont think that a field can be disabled and allows to choose data using f4 simultaneously. you can enable the field and allow the user to select whatever he/she wants.
    Then in any action like on press of save or submit button which the user will trigger after entering the values, get the value entered by the user in that perticular field and fire a query on the table/view, which you have used as selection method of your search help, it help is coming from data element then look for check table in domain. if sy-subrc comes 0 than go ahead else give error that value selected is modified.
    Thanks
    Vishal

  • Saved Search Not working in WEB UI

    Hi,
    When I am  creating a saved search for opportunity and run it.  The results are activities, not opportunity. But it is perfectly working for other saved search (like accounts, etc). Please help me in finding the reason behind this.
    Thanks.

    Hi Stefen,
    Thank you for the reply. There was misunderstanding in understanding the actual issue.
    User faces the issue as follows:
    "When they try to save a search for visit report, and run it later, they get the action items, not the visit report".
    Please note visit report is kind of Activity. Also we havnt implement any badi for saved search. Even I doubt whether this is a standard functionality for activity/visit report, when saved search runs to display the action items.
    Please help me on this.
    Thanks.

  • How to implement Quick Query and Saved Searches in ADF?

    We are using 11gR2 ADF.
    The requirement is to enable Quick Search and save the Searches.
    In the Oracle ADF documentation, it is mentioned that
    - Create a view with view criteria named.
    - In the .jspx drag and drop the view criteria and Select Quick Query
    Upon doing the above, we see that a Search panel is getting created, but with a message 'No Search Fields Added'.
    In the named view criteria, Under 'UI Hints' we have set
    -- execution mode as Both
    -- Search region mode is Basic
    -- Show Operators in Basic
    Under 'Criteria Definition'
    the attributes are added in a group with OR condition.
    Thanks for your reply. Oracle ADF developer guide does not help!!
    If you have any other documentation that helps in implementing this Quick Query and Saved Search, your help is greatly appreciated.

    Set the following on your af:query component
    SaveQueryMode = hidden
    ModeChangeVisible = false
    This should work for you ..
    Regards,

  • Adding Saved Searches task flow to a Page Template

    I am trying to add the Spaces "Saved Searches" task flow to my custom page template. I have tried a few different approaches and none seem to be working.
    First, I tried simply dragging and dropping the task flow from JDeveloper's Resource Palette into my template. JDeveloper created added the following to my template source code:
    +<af:region value="#{bindings.allsavedsearches1.regionModel}" id="pt_r1"/>+
    After uploading the changes to Spaces, there seemed to be no change to the rendered template.
    Second, I tried to simply add the task flow to a page in my test space via composer. However, as soon as I click the "Add" button next to the Saved Searches task flow, the page goes blank (white screen of death) and the following message shows up in the spaces error logs:
    javax.servlet.ServletException: com.sun.el.parser.ParseException: Encountered "\'" at line 1, column 65.
    Finally, I looked at how the out of the box templates implement the saved searches functionality. It appears that the saved searches use a custom folder in the Default Navigation Model. I looked at the source in the Default Navigation Model and found the following node:
    +<customFolder factoryClass="oracle.webcenter.search.view.rc.SearchServiceContextFactory" id="savedSearchesFolder" visible="true">+
    +<attributes resourceBundle="oracle.webcenter.webcenterapp.resource.WebCenterResourceBundle">+
    +<attribute attributeId="Description" isKey="true" resourceBundle="oracle.webcenter.webcenterapp.resource.WebCenterResourceBundle" value="NAV_APPLICATIONS_CUST_FOLDER_SEARCHES.DESCRIPTION"/>+
    +<attribute attributeId="IconURI" value="/adf/webcenter/foldersavedsearches_qualifier.png"/>+
    +<attribute attributeId="Title" isKey="true" resourceBundle="oracle.webcenter.webcenterapp.resource.WebCenterResourceBundle" value="NAV_APPLICATIONS_CUST_FOLDER_SEARCHES.TITLE"/>+
    +<attribute attributeId="WEBCENTER_SERVICE_ID" value="oracle.webcenter.search"/>+
    +</attributes>+
    +</customFolder>+
    I copied the entire node and put it in my navigation model. Upon rendering the template, I can see the new node in the navigation but when I click on it, nothing happens.
    Can someone please tell me if I am on the right track with any of these three approaches? Or where to look to diagnose the issues I am running into?
    Thanks,
    Joe

    UPDATE: I updated the "activation" property in the page def for the allsavedsearches task flow to be "deferred". Now I am getting an ADF popup menu with two menu items: "My Searches" and "Other Members" but clicking on the items does not trigger anything...
    Any thoughts? What additional information would be helpful for analyzing this issue?

  • Error in saving search result in MDS application

    Hi All
    I'm developing a ADF customizable web appicatoion using jdeveloper 11.1.2.0
    It works fine when I deploy this application to metadata repository, but when I Save a search result in search panel it gives following error "You do not have permission to replace this search"
    This is my configuration in ADF-Config file
    <persistence-config>
    <metadata-namespaces>
    <namespace metadata-store-usage="MAR_TargetRepos" path="/pages"/>
    </metadata-namespaces>
    <metadata-store-usages>
    <metadata-store-usage default-cust-store="true" deploy-target="true" id="MAR_TargetRepos">
    <metadata-store class-name="oracle.mds.persistence.stores.db.DBMetadataStore">
    <property value="mds-csd" name="repository-name"/>
    <property value="jdbc/mds/csd" name="jndi-datasource"/>
    <property value="owsm" name="partition-name"/>
    </metadata-store>
    </metadata-store-usage>
    </metadata-store-usages>
    </persistence-config>
    Please help me to resolve this error

    Hi,
    you are trying to change a system search, which is not allowed for customization. You can save custom searches in MDS but not override system searches
    +"Query component now support the overriding the saved search functionality. When user click on the "Save..." button, "Create Saved Search" dialog comes up with name field populated with the currently selected saved search. If user enters a "System Search" name and click OK button, a error dialog stating "You do not have permission to replace this search:" is shown. If user enters an already existing saved search name then a warning dialog stating "Replace existing search:" is shown. On clicking OK existing search is replaced with the new definition. If a name that is not already present in the saved-search list is provided, a new search with the given name is created. For this a new event QueryOperationEvent.Operation.OVERRIDE is added.+
    +Query component now allows the deletion of saved-search which is currently active search in the query-panel. When user deletes currently active saved-search, we set the first search from system-search list as the currently active search, and refresh the query-panel when "Personalized Saved Search" dialog is closed. "+
    http://jdevadf.oracle.com/adf-richclient-demo/docs/release-notes.html
    Frank

  • Yosemite: Saved search from Spotlight does not work the same

    Hi,
    I have various Logic Pro folders throughout my computer and want to create a Saved Search that brings all and only the Logic project files together into one place.
    There's a couple of catches: the Logic file extension has changed over the years with the various application updates.
    It would be nice to create a Smart Folder/Saved Search with something like File Extension:logic OR File Extension:logicx OR File Extension:lso
    However if you just add these search criteria as separate lines, it appears they are "AND" filters so nothing shows up at all.
    I seem to remember older versions of Smart Folders allowing you to have much more control over boolean search parameters.
    After a bit of online investigation I discovered that you can do some more complex searches using Spotlight and then save it as a Smart Folder or Saved Search.
    In Spotlight I used:
    Kind:Logic -.0 -(crashed) -.cst -.pst -.prf -.patch -.logikcs
    This cleaned out all the extra unneeded files and backups that are associated with Logic and just displayed only my desired .logic, logicx and .lso files.
    Awesome! Then I saved it as a Saved Search in the sidebar.
    Which doesn't work. Or at least the extra flags don't work. All I am seeing is the Kind:Logic again.
    This is how the Spotlight search translates across into the Saved Search window (I can scroll across to see the extra flags). Any good ideas or workable solutions? Thx!

    >
    fromObject in the code above is a key (String) that I retrieve from the OrderedHashtable and clone it using the code above.No. How could that code possibly clone a String? Where are you telling it what the new String's contents should be?
    (HINT: Nowhere.)
    I guess there is a work around where I can check if the cloneClass is an Instance of String and just do fromObject.toString(), but I was curious to know if there was a change in the way class.newInstance() works in Java 1.5No, it has not changed.

  • How to hide the Save Results Layout checkbox on the Create Saved Search pop

    I need to hide the Save Results Layout checkbox on the Create Saved Search popup. Can anyone tell me how to do it?
    This popup is used when the user is on a query (rendered by the af:query component) and they select click the "Save..." button. The have three options, Set as Default, Run Automatically, and Save Results Layout. I have an implementation that supports everything except saving the layout. So I need to hide that checkbox.
    Thanks,
    Mike

    For anybody else who needs to do this, here is how I did it.
    Add this to your css
    /* This hides the Save Results Layout checkbox on the Create Saved Search screen */
    span[id$='saveLayout'] {
    visibility: hidden;
    }

  • Saved search for Photo Stream not working in Mavericks

    I have a saved search for JPGs in my photo stream so I can easily access them via Finder instead of iPhoto. In Mavericks my saved search no longer sees my latest photo stream iPhone pics. Anyone else notice this? I can see them in iPhoto though. I've tried re-doing the search, etc, but it doesn't work. Any suggestions?

    Oh man, I've been beating my head on the desk trying to fix this. The only clue I have is that photos taken from iOS 7 (vs iOS 6) devices after about a week ago (wasn't there an OS X update recently?) don't show up in finder the same. When you dig through the "sub" folder to find the long-named folders with the photostream files in them, hit command+i and check out the "More Info:" section. The recent ones don't have anything in them (see http://d.pr/i/WKzR). Furthermore if you drill down to one of those folders containing such an image (see: http://d.pr/i/nIUP) and try to create a saved search from there it won't show up (see: http://d.pr/i/FOri).
    I even tried to create an automator to pull those images out, but when you're searching for a file in any of those new folders finder doesn't see anything.
    Not an answer for ya, just more confusion. Let me know if you get any bright ideas.
    -roccit

Maybe you are looking for

  • Jabber for Windows 9.2.0 on VXC

    I've upgraded to 9.2.0 Jabber for Windows. I was previously on Beta drop 2. Since upgrading to 9.2.0 I've lost all video capability. I've tried this with the Tandberg Precision HD bullet cam and the Logitech C920-C. I am running VXC image 8.7 voice v

  • CS5 Bridge Tools\Photoshop Menu Options aren't working ...

    The CS5 Bridge Tools\Photoshop Menu Options that contain the Image Processing / Photomerge / HDR Pro features that open images from Bridge into Photoshop isn't working ... has this happened to anyone else?  Have you any ideas how to fix this? I've cl

  • Converting Speakers to Wireless

    Are there any electronics experts on here who can comment on the possiblity of modifying a Creative speaker system so each satalite speaker is completely wireless? I have the Inspire 5.1 Digital 5700. Probably one of three best purchases I have made

  • How do I insert a space between each letter? i.e. ABC becomes A B C

    I have a long strand of characters that I would like to insert spaces between and doing it manually is not practical. Can anyone suggest a shortcut or a way to save me a day of sitting and hitting right arrow space bar??

  • *which event trigger by event wise in classical, interactive, alv reports*

    Hi Experts, can any body tell about event wise trigger in Q(1). classical reports.         ( from initial) Q(2). Interactive reports.      (from initial) Q(3). ALV List and Grid      (from initial) points will be rewarded. Thanks, Balakrishna.