How to delete form elements in Muse

I followed the instructions I found on-line but am unable to remove an item from a form in Muse. There is no option for deleting elements, i.e.: a name or  phone field. Either, it's a hidden feature or I totally missed it.
Christian

Tanks for your reply. Unfortunately that doesn't work, that was the first thing I tried. I understand the field is selected once it shows the blue arrow in the top right corner, but hitting "delete" produces no action. And no right click will give me the "clear" or "delete" option. Even using the top menu bar has the actions"cut", "copy" and "clear" greyed out...
Some on-line info suggested to click on the "trash can" in the top right corner and confirm "delete".... nothing like that in my version. I am using the most current version of Muse, could it be a bug?
I know I can redo it by starting with the simple form and add extra fields (that works) but I should not have to do it the long way...
Thanks,
Christian

Similar Messages

  • How to delete an  element in an array...(simple way)

    hi,
    Newbie here... please help how to delete an element in an array list?
    there are alot of codes but they're complicated for a newbie like me..
    (simple codes would be better ..:) thank you...

    makk_88 wrote:
    since u want the simple method.....
    just overrite the position of the element that need to be deleted with the next element in the array..
    by doing this, element need to be deleted will not be accessibe..
    i think u got..what i'm saying.
    thnx..Mak,
    Say we wish to delete the second element of an array a[1]. Do you really believe that a[1] = a[2] somehow magically deletes a[1]? I really don't think so Tim.
    Two eggs, minus 1, equals two eggs? Interesting theory, but I think you're probably wrong.
    *@OP:* My advise is just use an ArrayList.
    Cheers. Keith.

  • HOW TO DELETE DUPLICATE ELEMENT IN A VECTOR

    Hi everybody!
    If I've a vector like this vectA={apple,orange,grape,apple,apple,banana}
    and I want final result be vectB={apple,orange,grape,banana}.
    How should I compare each element in vectA and delete duplicate element. Like here duplicated element is apple. Only one apple remain in the vectB.
    Any help,
    Thanks.

    Hello all. Good question and good answers, but I would like to elaborate.
    To begin with, you specifically asked to map the following:
    {apple,orange,grape,apple,apple,banana} ==> {apple,orange,grape,banana}
    Both of cotton.m's solutions do NOT do this, unfortunately. They are both useful in particular cases though, so think about what you're trying to do:
    cotton.m's first solution is best if order does not matter. In fact, as flounder first stated, whenever order doesn't matter, your most efficient bet is to use a Set instead of a List (or Vector) anyways.
    Set vectB = new HashSet(vectA);This code maps to {banana, orange, grape, apple}, because HashSets are "randomly" ordered.
    cotton.m's second solution is good if you want to impose NEW ordering on the List.
    Set vectB = new TreeSet(vectA);This code maps to {apple, banana, grape, orange}, because TreeSet uses alphabetical-order on Strings by default.
    java_2006, your solution is the most correct, but it's a little verbose for my taste :)
    more importantly, the runtime-efficiency is pretty bad (n-squared). calling Vector.contains performs (at worst) n comparisons; you're going to call it n times! Set.contains usually performs 2 comparisons (constant, much better), so I suggest you USE a Set to do the filtering, while still sticking with your good idea to use a List. When the ordering is "arbitrary" (so can't use TreeSet) but still relevant (so can't use HashSet), you're basically talking about a List.
    I think saving A LOT of time is worth using A LITTLE extra space, so here, let's save ourself some runtime, and some carpal-tunnel.
    import java.util.*;
    class Foo {
         public static void main(String[] args) {
              String[] fruits = {"apple","orange","grape","apple","apple","banana"};
              List     l = Arrays.asList(fruits),
                   m = filterDups(l);
              System.out.println(m);
         // remember, both of the following methods use O(n) space, but only O(n) time
         static List filterDups(List l) {
              List retVal = new ArrayList();
              Set s = new HashSet();
              for (Object o : l)
                   if (s.add(o))
                        retVal.add(o);     // Set.add returns true iff the item was NOT already present
              return retVal;
         static void killDups(List l) {
              Set s = new HashSet();
              for (Iterator i = l.iterator(); i.hasNext(); )
                   if (! s.add(i.next()))     
                        i.remove();
         // honestly, please don't use Vectors ever again... thanks!
         // if you're going to be a jerk about it, and claim you NEED a Vector result
         // then here's your code, whiner
         public static void mainx(String[] args) {
              String[] fruits = {"apple","orange","grape","apple","apple","banana"};
              List l = Arrays.asList(fruits);
              Vector v = new Vector(l);
              killDups(v);
              System.out.println(v);
    }

  • How to delete cost element name from group after deleting the cost element

    Hi,
    Please let me know how to delete the cost element number  from the Cost element group hierarchy.I have deleted cost element but still showing only the CE number---no valid master record.If I d not want this to be visible within hierarchy let me know what should I do.
    Thanks

    Hi
    Go to change cost element group select the cost element click on select tab (3rd Tab from Left) it will take u to new screen in that screen select remove tab (1st tab from left)
    Regards
    Sandesh

  • XMLBeans - how to delete an element?

    Guys,
    How do you delete an element within an xml data element?
    If there's more than one way what are they?
    Currently, I've generated XML java objects. I see a setNil() method and a couple removeXXX methods but neither appear to delete the element I'm trying to give the axe to.
    Thanks!
    -mark

    makk_88 wrote:
    since u want the simple method.....
    just overrite the position of the element that need to be deleted with the next element in the array..
    by doing this, element need to be deleted will not be accessibe..
    i think u got..what i'm saying.
    thnx..Mak,
    Say we wish to delete the second element of an array a[1]. Do you really believe that a[1] = a[2] somehow magically deletes a[1]? I really don't think so Tim.
    Two eggs, minus 1, equals two eggs? Interesting theory, but I think you're probably wrong.
    *@OP:* My advise is just use an ArrayList.
    Cheers. Keith.

  • How to delete an element in arraylist??

    here i have an array list which contain details of an address book
    I want to delete one element in the list
    but its not deleting
    Could anyone please take a look and help me
    tank u in advance!!
    else if (X.compareTo(F)==0)
       {System.out.println("Pour supprimer une fiche : saisir le NUM INDEX.");
        Integer c1 = new Integer(0);
        Z = clavier.readLine();
        c1=Integer.valueOf(Z);
        System.out.println("Vous allez supprimer la fiche "+c1);
        for( Iterator it= l.iterator(); it.hasNext();) {
          Object p =it.next();
          relations R=(relations)p;
            if (R.getnumero()==c1)
           l.remove(l.indexOf(p));}
          for( Iterator it1= l.iterator(); it1.hasNext();) {
             Object o =it1.next();
             if (o.getClass().getName()=="carnetadresses.contact")
               ((relations) (o)).affiche();
               }break;
      }

    It's a good thing you use code tags for posting here. Could you now consider using code conventions?
    - Why is the second loop nested in the first one? (this second loop looks weird anyway...)
    - The Iterator has a remove method. You should use it in such case.
    - Looks like you have a malpositioned/misused break statement (which is probably the reason why nothing happen, as it terminates the for loop after the first iteration.)

  • How to delete empty element in popup list

    I have a question about a suspicious behaviour in Forms Builder 10.1.2.0.2.
    When I have a list object (pop up list) I can define some values in the attribute palette of the object.
    So you can set a shown name and a value behind. In this little window to set the items of the popup list you get automatically a white empty item at the end of the list. When I click now on this empty item (you do so, when you want to add an item) Forms Builder automatically adds an new empty item at the end.
    When I click this new empty item, Forms Builder adss another empty one ... and so on.
    It´s very suspicious because, when I end this dialog with "OK", it will be saved and when I open the form (over web) I have at the end of the list one, two (or more) empty elements in list.
    But I can´t delete this empty ones from the list in Forms Builder.
    So my question:
    how can I delete empty items in a popup list??
    I try it with hit "del" button at keyboard or delete the set value for the item (I hope Forms Builder delete items without value). But all does not help.

    Thanks jwh for this great solution! :)
    On my german keyboard it is:
    ctrl+< for deleting a line
    ctrl+> (= ctrl+shift+<) for adding a new line
    Thanks! :)
    I have another question (you can maybe help me, too?).
    On this popup lists you can have several items. When you open a form (via web) and the list has more than x items (maybe 5 or 6) the form shows a scroll bar on the right side.
    Is there any poosibility to set how much items has to show and only show a scroll bar when there are more items in the list?
    Or other way: set the maximum of shown items so big, that there will be no scroll bar.
    Message was edited by:
    ulfk

  • How to delete an element in a tree?

    how can i delete element in my tree?
    after that to refresh the tree?

    OK. You should have the rootNode and then your three other nodes added to the root (fiche, famille, etc)?
    I'm currently creating an application that uses a tree with two branches. The code I posted works regardless of the branch the node I wish to remove belongs to.
    It does depend as well how you are storing your nodes. I mean I'm just storing the node referenced by a string in a hashtable for easy reference. I gather that you want to click the node for it to disappear?

  • How to delete su-elements in "System Preferences/Others"

    I'm trying to delete a doubled element (done by mistake) inside an application located in "Other" within "System Preferences"
    More precisely:
    - I've "USB overdrive" app control on this location: "Other"
    - By error, whoever it is, in "Status" window, there are two "USB Receiver" lines
    How can I delete one of those?

    In System Preferences, right-click on one of them and select Remove.
    I'm not sure how that will affect the other. If two status menus are still there, cmd+drag one off the status menu area.

  • How to delete Form XObject?

    Hi everyone.
    I want to delete some Form XObjects from document via C# application. Can anyone guide me from what to start? I found function AFLayoutDelete but it seems it goes via C++, because I can't find it in .NET Acrobat library...
    At least I would like to know how to find an Form XObject..
    BR,
    bala nemate

    This level of access is only available to Acrobat plug-ins, which must be written in C/C++.

  • How to delete Form translation

    Hi,
    Is it possible to remove translation on a form that we created by transaction SE63. I did a translation for a form and trying to delete it via. menu path (Edit->Delete target text). When Im coming back to this translation it is still showing me there.
    rgds
    Sid

    I found the solution! Don't use the button "Delete Target Text". Instead, delete all the lines EXCEPT the first one (the one with the /E in the first column). Then Save Active. The effect will be that the translation doesn't exist anymore and the Smartform takes the Source (Standard) Language of the Text Module instead.
    Br,
    Phil

  • Playstation 4 How to delete former User account

    I need some help I just bought a second, used PS4 at our local Gamestop in adition to my PS4 at home, which I use as my primary Playstation.I already set this PS as my "primary" Playstation. As I started the used PS4 I noticed, that the former user account was still on the playstation. I can not connect to his PSNsettings, because I neighter know his email/ password nor do I know him in person. I tried to add my own account, whicht worked perfectly, then I tried to delete his account, but I can't do so, because PSN asks for his login information which I don't know.Deactivating this PS4 as HIS primary gaming console does not work as well. Four things I want to know: Is there a way to delete an existing user without knowing his/her login information?In case that ain't possible, is it a problem to simply ignore his still existing account?Is it possible to deactivate the PS4 as HIS active, primary Playstation without knowing his login?I case I cannot do so, would it be a problem to simply ignore the fact, that the now my PS4 is still set as the primary PS4 of somebody else? Thanks fpr your help!

    With the power off (not in standby)  press and hold the power button on the PS4 until you hear a second beep after about 7 seconds. You will then need to connect your controller with the usb cable to navigate the menu. The options are explained in this link - https://support.us.playstation.com/app/answers/detail/a_id/5044/~/ps4%3A-safe-mode 

  • How to delete an element from a template??

    I bought a dreamweaver template and there's a menu that goes across the top of the screen but I don't know how to get rid of it?? I don't see any coding for it in dreamweaver it just kinda shows up. Link to page: http://ramclutches.com/newsite/index.html

    This is not a DW template child page, so all the code that is rendered on the screen is also editable by you. Add this rule to your CSS -
    #advanced .bg_pro {
         display:none;
    and that top menu will be gone.

  • Installed photoshop elements 12 and can't delete photoshop 8.  How to delete photoshop elements 8?

    Installed Photoshop Elements 12 and can't uninstall Photoshop Elements 8. Desktop gives error messages on startup, Windows 8.1.

    Try uninstalling in Safe Mode.

  • How to delete a UI element in a "safe" way?

    When I delete/cut/copy a UI element from a project.
    I cannot rebuild/archive the project due a "classpath" problem.
    The project's structure is damaged and a lot of errors are generated.
    1) How to delete UI elements from the layout without damage the project's structure?
    2) If the project's structure is damaged. Is there an easy way to fix it?
    (I tried the "repair" option from project name's context menu - didn't help).
    Also, I tried to "organize imports" - didn't help either.
    http://img67.imageshack.us/img67/4927/errors0ph.jpg
    Thanks, Omri

    Well, failing everything else, there is a way to do this if you have deleted an element and the project has become damaged.
    In your Windows file explorer, browse to the project directory, search for and delete all the ".class" and ".java" files. Now browse through all the project subdirectories, open every file in Notepad, and search for references to the object which you deleted, and delete those references.
    You need to be really careful when you do this, because you can totally ruin the Web Dynpro project. But if done correctly, it can revive a project which has run into the problem which you describe.
    Walter

Maybe you are looking for

  • Features Mirrored upon Import into Acrobat 3D

    In order to bring SolidWorks 2007 assemblies into A3D, I have been doing a screen capture using the SolidWorks eDrawing viewer (unfortunately, no SW2007 support yet in opening files directly in Toolkit, even after installing the update - Hopefully ve

  • SB 0220 Driver, Vista

    I've Looked all over for this driver with no Luck Please help ... :angry: SoundBlaster Li've 5. Digital Model: SB0220 SN: MSB02202307346 Thank You !

  • Iphone not working after update to 3.1.3 firmware

    Can someone help?I purchased iphone in USA (I live in U.K.)Got it to work in U.K. on O2 using correct sim, etc. Updated to firmware 3.1.3 now all I get when I enter iTunes is a message "The sim card inserted in this iphone does not appear to be suppo

  • Unable to start SAP due to the connection error with Oracle

    Dear All, We have done distributed installation. CI, Oracle has been installed successfully. But when we tried to connect the DB from CI. we are getting the error R3trans -d is giving the return code 00012,  when we tried to start system from CI. Fol

  • [SOLVED]JDownloader: Open File / Open Download Directory not clickable

    I bought a new drive, JD downloads without problems in a folder in this drive, but I can not click on Open File and Open Download Directory. I use Thunar. On my previous installation I had the same problem and solved it by moving the download folder