Deleting a single item list in dropdown choices

Perhaps I am just not seeing the obvious simple solution but how do I provide a user the option to simply delete his choice in a dropdown selection. I have added a clear form button to wipe all form data, but how do I allow a user once he/she has selected an item from a dropdown list to to just go back and remove any choice from a single dropdown item? In fact I would think this should be possible with all form items, no?

With the 'resetForm' javascript command, you can specify a single field, or multiple fields, to reset. Add this to a button's action event, and replace 'Combo Box1' with the name(s) of the fields you want to reset:
this.resetForm("Combo Box1") // Resets only Combo Box1
Alternately, you can use one of the following:
this.resetForm(["Combo Box1", "Combo Box2"]) // Resets only Combo Box1 and Combo Box2
this.resetForm() // Resets entire form

Similar Messages

  • Deleting a single item from the trash.

    Hello
    Is there a way to delete a single item from the trash, while leaving all other items in the trash?

    I don't believe so and I'm not sure why you would want to.
    Items should not be placed in the Trash unless you intend to delete the items. The Trash is not designed for and should not be used as a temporary storage location.

  • What is the difference between "Delete" & "Forget about this site" when deleting a single item in the 'History' as a 'customising' procedure ?'c'

    I am still using Firefox on Windows XP

    Using "Forget About This Site" will remove all data stored in Firefox from that domain like bookmarks, cookies, passwords, cache, history, and exceptions, so be cautious and if you have a password or other data from that domain that you do not want to lose then make sure to backup this data or make a note.
    You can't recover from this 'forget' unless you have a backup of the involved files.
    It doesn't have any lasting effect, so if you revisit such a 'forgotten' website then data from that website will be saved once again.

  • Delete single item form multiple populated list

    Hi,
    please help me to find a solution!!
    I have 2 listboxes. listbox Description is populated by XML.
    When user selects multiple items at the same time from the Description listbox, they are populated in the listbox and are removed from Description listbox. that works fine.
    But the issue is if the user accidently selects one of the multiple selected items at the same time wrong and want to delete a single items, this doesnt work anymore.
    I can not even click on each single item.
    I try to find a way how to enable user to populate multiple items at the same time and be able to delete each single item, which then should return back to the Description listbox.
    I would really appreciate if you could help me on this!!!
    This is my sample: https://acrobat.com/#d=l0mujTOFduSJFele5R5i3g
    Thanks,
    Diana

    Would you not just reverse your code ..instead of populating listbox from the selections in description and deleting the items out of description, remove the items from listbox and update description then remove the items from listbox.
    Or am I missing something?
    Paul

  • Multiple selection but delete single item

    Hi,
    please help me to find a solution!!
    I have 2 listboxes. listbox Description is populated by XML.
    When user selects multiple items at the same time from the Description listbox, they are populated in the listbox and are removed from Description listbox. that works fine.
    But the issue is if the user accidently selects one of the multiple selected items at the same time wrong and want to delete a single items, this doesnt work anymore.
    I can not even click on each single item.
    I try to find a way how to enable user to populate multiple items at the same time and be able to delete each single item, which then should return back to the Description listbox.
    I would really appreciate if you could help me on this!!!
    This is my sample: https://acrobat.com/#d=l0mujTOFduSJFele5R5i3g
    Thanks,
    Diana

    Would you not just reverse your code ..instead of populating listbox from the selections in description and deleting the items out of description, remove the items from listbox and update description then remove the items from listbox.
    Or am I missing something?
    Paul

  • Trash - Deleting a single file in the Trash

    Hello,
    I am a new Mac user and I am having trouble deleting selected items already located in the trash-bin.
    In windows i had the option of selecting either one or many items in the trash and "permenantly" deleting them. It seems that the mac trash-bin can only delete everything at the same time with out the option of deleting selected items.
    What can i do to select and delete a single item with out emptying my whole trash can??
    Ilya
    Mac mini 1.5GHz Intel Core Solo 512 MB Ram Mac OS X (10.4.6)

    You cannot decide what to trash and what not to. It either all goes or it all stays. Windows has that feature because it doesn't trash things but has you put them in a recycle bin so you can decide later what to do. Seems stupid to me but then again I don't use Windows too often. (thank goodness)
    I do not recommend that you use the trash as a storage location. Do you store things in the trash can at home?
    If you are unsure as to whether to throw something away or not just put it in a folder labeled with an appropriate name until you decide to keep it or not. Many a file has been accidentally trashed and lost forever because it was stored in the trash rather than a proper location. Just my opinion.

  • Deleting a single file in Trash goes to Desktop. Why?

    Hi,
    When I delete a single item in the Trash, it ends up on the Desktop.
    Why doesn't it just get deleted rather than be sent to the Desktop?
    Is there any way of deleting a single item in the Trash without deleting all of its content?

    With the file on your Desktop try restarting.
    Can not select a single file in the trash can to delete if the trash can is multiple files.
    There are ways of using Terminal.
    http://www.thexlab.com/faqs/trash.html

  • Single Item drop down (View, Edit, Delete, Alert) on Companyweb List (2003)

    We had a user delete an old list that was created by a previous technician. I recreated the list as best I could but I noticed the previous one had a drop down on the first column and I don't see that anymore. The drop down had (View, Edit, Delete, Alert)
    each item in the first column would have this.

    Kris,
    Go to "Modify settings and columns" 
    select the column named "Title (linked to item with edit menu)" and rank it as first column
    like below
     You will get (View, Edit, Delete, Alert)
    Please 'propose as answer' if it helped you, also 'vote helpful' if you like this reply.

  • How to have a unique list of items for separate dropdown lists?

    Software: Acrobat X (10) pro on Windows
    I want to create a pdf form in which all dropdown lists are populated with the same list of items to choose from. If I use the same field name for all drop down lists, the item selected in one dropdown list is automatically selected in all lists. This is not what I want. I wish to be able to select a different item in each & single dropdown list. I could of course maintain separate item lists for each field (using separate field names) but what a waste of time!... especially as the field lists would then have to be updated separately. There's got to be a better way to do it.
    Any idea how this could be achieved? Thank you.

    Here's a sample script that first defines a list of items in an array and uses it to update a number of dropdowns, name dd1...dd10:
    // Populate an array with the list items
    var aItems = ["-- Select a state --", "Alaska", "Hawaii", "Washington", "Oregon", "Idaho", "Montana", "Wyoming", "Nevada", "Colorado", "Arizona", "New Mexico"];
    // Loop through the dropdowns...
    for (var i = 1; i < 11; i += 1) {
        // ...and set the list items
        getField("dd" + i).setItems(aItems);
    That's all there is to it. This can be run from the Mouse Up event of a temporary button that you create, the interactive JavaScript console (Ctrl+J), etc.
    More info on setItems: http://livedocs.adobe.com/acrobat_sdk/9.1/Acrobat9_1_HTMLHelp/JS_API_AcroJS.88.752.html

  • Strange item in desktop dropdown list after CS4 installed

    Since installing CS4, there is a new item in the dropdown list when I
    right-click on my desktop
    The new item is "Adobe Drive CS4". It has two items showing under it. They
    are "Connect to", and "New Project". The "New Project" is greyed out, even
    when Photoshop CS4 is running.
    Can anyone advise me what this is all about?? CS3 is still installed, but I
    will be removing it shortly. But it did not create any such item in the
    list.
    Ron Hirsch

    OK, so I now know what it is. But why is it there in the dropdown listing?
    If I click on "connect to", a small window opens, And, this last time that
    the window opened, it actually had text in it explaining what you did
    explain. Previous times had nothing in the box explaining anything.
    I don't feel I have any need for Version Cue or Adobe Drive CS4, but I see
    no way to change anything there. I did not install Verson Cue when I
    installed CS4. I don't see it in my Windows services listing, nor in the
    list of many startup items. I'd like to uninstall Adobe Drive CS4. I see a
    listing the XP programs window of "Adobe Drive CS4". But I see no path to
    get rid of that. Is there a path to do so?
    A new search in Google turned up the following
    ++++++++++++++++++++++++++++
    Any of you who have installed Adobe CS4 will know you will get a context
    menu entry for Adobe CS4 Drive, even if you chose not to install the actual
    program so effectively the entry is useless. After some googling and
    experimenting found two ways to remove it.
    1. Install & Uninstall
    Install Adobe CS4 Drive using the installer then uninstall it. This seems to
    get rid of it.
    2. Manual Remove
    Open Regedit and delete these two entries.
    HKEY_CLASSES_ROOT\AllFilesystemObjects\shellex\ContextMenuHandlers\{C95FFEAE-A32E-4122-A5C 4-49B5BFB69795}
    HKEY_CLASSES_ROOT\Directory\Background\shellex\ContextMenuHandlers\{C95FFEAE-A32E-4122-A5C 4-49B5BFB69795}
    +++++++++++++++++++++++++++++++++
    I'll probably do the Registry editing
    Ron Hirsch

  • List Column Dropdown Filter Missing Choices

    I have a list with 1768 items. When i try to use the list column dropdown filter menu it does not give any options.
    This is what I see when I click on the Client Name list column
    When i click on another list column I get this.
    I there anything I can do to get the options in Client Name as Status or any of the other list columns?
    Thanks
    James T.F

    Hi James,
    Based on your description, my understanding is that you want to show the values in Client Name column for filtering.
    When a SharePoint List gets to a certain size, around 500 items, some fields will no longer display a proper drop down for filter choices.
    Instead, it will display “Show Filter Choices”.  Microsoft did this to prevent performance problems by showing more than 500 options to choose from.
    As a workaround, I recommend to create views to filter the list instead.
    Best Regards.
    Thanks
    Victoria Xia
    TechNet Community Support

  • HT204655 how do i choose a photos folder for my screen saver.  iPhoto used to be listed as a dropdown choice.  now only folder is listed.

    how do i choose a photos folder for my screen saver.  iPhoto used to be listed as a dropdown choice.  now only folder is listed.

    You cannot take a folder out of the Trash to your Desktop without erasing the one on the Desktop. You need to first change the name of the folder on the Desktop. Or you can open the folder that's in the Trash and drag the files onto the Desktop assuming there aren't too many of them.
    But if you have a duplicate on the Desktop why do you need to remove the one that's in the Trash?
    If you feel you must take the folder out of the Trash, then you need to rename the duplicate that's on your Desktop.
    If you wish to put the folder back where it was when you deleted it, then open the Trash window, select the folder, then CTRL- or RIGHT-click and select "Put Back" from the context menu.

  • Hi. Does anyone know how to delete my guest network from the list of network choices that everyone in the neighborhood sees when picking a network?  Followed helpful suggestions on this site to delete the netwk but it still appears.  Appreciate any help!

    Hi.  I'm trying to make my guest network disappear from the list of network choices that appears to everyone in the neighborhood.  Even though I followed the great suggestions on how to delete the network, it's still appearing in the list that everyone sees.  It has my name and would prefer to get rid of it.
    Please help!  Many thanks!

    Thank you for not only the tip but also especially the research showing that for anybody other that those using Wi-Fi for the first time the network wouldn't disappear.  I wanted it to disappear for everyone so.....I finally solved it by resetting the Airport Extreme to the factory settings and starting over from scratch!  It worked! Yay!!!!!
    So, for everyone that has had this problem (and I've read many of the same complaints in different places on the Internet), you must go into Airport Utility and check the box stating that you want to reset it to the factory settings.  Do not do it with a paper clip and the reset button on the box; I tried that first and it did not work.  You must reset it via the Airport Utility.  Then just start over and you will have the choice to NOT check the box to Enable Guests.  If you want to enable guests, just be sure not to use your name or you're back to the same problem. Apple is so great with everything...wouldn't it have been so easy for them to just put this in the manual somewhere?????  Thanks for all your help.    Hope this helps others!

  • My recent items list appears again after restart. How do I delete it for good?

    When I turn on the computer, the recent items list still displays the documents and applications I worked with a few days ago. I delete it, and after restarting the computer, it displays the same list again (not a new list, but the exact same items over and over again).  Any tips?

    Select the iPod shuffle in the iTunes sidebar (under DEVICES).  If this is a current 4th (or 3rd) gen iPod shuffle, you should be able to see the contents of the shuffle by type, intented under the shuffle's name (still in the sidebar).  Select Music or Audiobooks (not sure where those items from the library will be listed).  The items will be listed to the right, for each category.  Find the items, select, and delete.
    It's on page 20 of the manual
    http://manuals.info.apple.com/en_US/iPod_shuffle_4thgen_User_Guide.pdf
    NOTE:  If this is an 1st or 2nd gen iPod shuffle, select the iPod shuffle in the iTunes sidebar (under DEVICES).  Over to the right, go to the Contents tab, where the items are listed.  Select and delete them from this list.
    I find it more convenient to make a playlist in iTunes with things I want to put on the shuffle.  I then set up automatic syncing (or use autofill) to have iTunes load the shuffle from that playlist, automatically.

  • Can't delete multiple selected items in List or Library

    I am experiencing quirky behavior when attempting to delete multiple selected items from a library or list. I select a few items via check box for each item I would like to delete. Then I click the delete button in the ribbon, and all I get is "Deleting...",
    but no page refresh and the items are not deleted. However if I access the same list or library via the App server and select a few items, then hit delete, the page refreshes and the items are deleted.
    So I consulted the Logs and compared the Web Server vs App Server, and the there is a lot of cryptic entries. The few lines that stands out most to me is the App server is:
    ConnectionString: 'Data Source=database;Initial Catalog=Content;Integrated Security=True;Enlist=False;Asynchronous Processing=False;Connect Timeout=15'   
    ConnectionState: Closed ConnectionTimeout: 15
    In fireItemEvent(), for list Building Locations, and item: 1
    In fireSyncItemEvent(), calling ExecuteItemEventReceivers()
    Calling ExecuteItemEventReceivers() for list 0f773535-3b22-4c29-97f1-fd2b70b50dd3 on item 1
    Entering monitored scope (Event Receiver (Microsoft.SharePoint.Publishing, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c, Microsoft.SharePoint.Publishing.Internal.PublishingWebEventReceiver))
    Releasing SPRequest with allocation Id {FE9A45A8-C042-4223-8FCC-4BD873C93885}
    PublishingWebEventReceiver:ItemDeleting: item 
    These calls are not in the web server log.
    The list I was doing the delete action on was "Building Locations". We are using claims based authentication
    Thanks for any insight or thoughts.
    Brandon

    I confirmed that there is no rewrite tags in either web config (app or web).
    I did download fiddler, and when I try and delete on the web front end I get:
    It tries to access the URL https://mysite/_layouts/_vti_bin/client.svc/processQuery
    Then it sends me here since I have been denied
    <html><head><title>Object moved</title></head><body>
    <h2>Object moved to <a href="https://mysite/_layouts/AccessDenied.aspx">here</a>.</h2>
    </body></html>
    The app server goes to
    http://mysite/_layouts/_vti_bin/client.svc/processQuery doesn't get denied and deletes the items.

Maybe you are looking for