How to change edit  button

Hi Friends,
I am adding a new page to my sample test apps AnyCo Corp. the new page has edit button (a pencil and paper icon).
But when I run the page, I saw that its not the same edit icon as the other pages. i tried to edit the pages
again and click on BUTTONS region, but i cannot see any edit icons there.
Where do I search this edit icon please.
Thanks a lot

Hi,
Go to the button definition and use the following settings:
Button Style: Image
Button Image: #IMAGE_PREFIX#xxxxx.xxx
Where xxxxx.xxx is the image name. These images are stored in the /i/ folder on the server. For a list of the ones that were available to me on my OTN workspace, see: [http://htmldb.oracle.com/pls/otn/f?p=45958:21].
Andy

Similar Messages

  • How to change the button's clicked color

    Dear all,
    How to change the button's clicked color
    I want it to be white in color as my button's background color is white
    Thanks

    How to change the button's clicked colorvia the UIManager

  • Add Change/Edit button in ALV

    Hello Experts,
                   How to insert the button in ALV grid toolbar. Now its showing Check,insert,append and delete button.How to add change or edit button in ALV ?
    I'm using ALV componenet  SALV_WD_TABLE.
    Thanks.

    Hi Stars,
    To achieve this, you have to two of ALV grid events. Use event TOOLBAR to add a button & event USER_COMMAND to implement a function.
    In the method handling the toolbar event, we define a new button by filling a structure and appending it to the table attribute mt_toolbar of the object to whose reference we can reach via the parameter e_object of the event.
    Example code snippet for your reference :-
    DATA: ls_toolbar TYPE stb_button.
    CLEAR ls_toolbar.
    MOVE 3 TO ls_toolbar-butn_type.
    APPEND ls_toolbar TO i_object->mt_toolbar.
    CLEAR ls_toolbar.
    MOVE 'PER' TO ls_toolbar-function. "#EC NOTEXT
    MOVE icon_display_text TO ls_toolbar-icon.
    MOVE 'Passenger Info'(201) TO ls_toolbar-quickinfo.
    MOVE 'Passenger Info'(201) TO ls_toolbar-text.
    MOVE ' ' TO ls_toolbar-disabled. "#EC NOTEXT
    APPEND ls_toolbar TO i_object->mt_toolbar.
    CLEAR ls_toolbar.
    MOVE 'EXCH' TO ls_toolbar-function. "#EC NOTEXT
    MOVE 2 TO ls_toolbar-butn_type.
    MOVE icon_calculation TO ls_toolbar-icon.
    MOVE 'Payment in Other Currencies'(202) TO ls_toolbar-quickinfo.
    MOVE ' ' TO ls_toolbar-text.
    MOVE ' ' TO ls_toolbar-disabled. "#EC NOTEXT
    APPEND ls_toolbar TO i_object->mt_toolbar.
    Regards
    Abhii

  • Create change/edit button in ALV

    Hello Experts,
                   How to insert the button in ALV grid toolbar. Now its showing Check,insert,append and delete button.How to add change or edit button in ALV ?
    I'm using ALV componenet  SALV_WD_TABLE.
    Thanks.

    Hi,
    With the previous reply you can create the customized button.
    to make ALV editable or non editable(change or read only) the code to be written is:
    DATA lo_cmp_usage TYPE REF TO if_wd_component_usage.
      DATA lo_interfacecontroller TYPE REF TO iwci_salv_wd_table .
      DATA lo_value TYPE REF TO cl_salv_wd_config_table.
      lo_cmp_usage =   wd_this->wd_cpuse_alv_table( ).
      IF lo_cmp_usage->has_active_component( ) IS INITIAL.
        lo_cmp_usage->create_component( ).
      ENDIF.
      lo_interfacecontroller =   wd_this->wd_cpifc_alv_table( ).
      lo_value = lo_interfacecontroller->get_model( ).
    *lr_table_settings->set_read_only( abap_false ).*"you can  make it abap_true or abap_false based  to make
    the ALV editable or non editable
    Priya

  • How to change the button size of Calendar prompt

    I want to change the button size in Calendar prompt. How to change it?
    Thank you!

    I think it is not necessary to modify the Calendar button size.
    The Calendar button actual size is 20X20.
    But the gif file which is used by Calendar button is not filled by icon.
    It seems that the height is smaller than the other buttons.
    Edited by: user12291797 on Dec 3, 2009 12:59 AM

  • How To Change InputDialog Buttons?

    hi there
    i made an InputDialog
    and i want to change the button names ,how to do that?
    and how to react with the user clicks a button?
    here's what i did
    import java.awt.*;
    import javax.swing.*;
    import java.awt.event.*;
    public class Custom_Dialog
        public static void main(String[] args) {
    String Text=JOptionPane.showInputDialog(null,"Input Something","Search",JOptionPane.QUESTION_MESSAGE);                                   
    }

    hi i made it but i have a problem
    is that when i press the Search Button The JDialog disappears and loses focus
    and i want it to still focused i used requestfocus() but it doesn't work
    import javax.swing.JDialog;
    import javax.swing.JFrame;
    import javax.swing.JOptionPane;
    import javax.swing.*;
    class Custom_Dialog
      public static void main(String[] args)
           JTextField textfield=new JTextField(5);
        Object[] options =
        {"Search", "Cancel"};
    Object[]array={"Input Something",textfield};
        JOptionPane pane = new JOptionPane(array,
            JOptionPane.QUESTION_MESSAGE, JOptionPane.DEFAULT_OPTION, null, options);
        JDialog dialog = pane.createDialog(textfield, "Search");
        dialog.setDefaultCloseOperation(JDialog.DISPOSE_ON_CLOSE);
        dialog.setVisible(true);
        if(pane.getValue().equals("Search")){
             System.out.println("Search Pressed");
             System.out.println(textfield.getText()+" Is Entered");
             dialog.requestFocus();
        else{
             System.out.println("Cancel Pressed");
    }

  • How to change the button image in theme editor

    How can i change the button image in theme editor. If i upload another button image in theme editor it doesn't show me the full image. it cuts it from the right. how can i view  the full image as a button.
    Thanks

    HI,
      Check this link
    https://www.sdn.sap.com/irj/scn/wiki?path=/display/ep/modifying%252bthe%252blogon%252bpage
    Custom logon page
    Portal Customizations Intro - Login Part 1
    Change the portal logon page image programmatically
    Branding
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/a000df6b-586a-2910-e6be-9fee831d5a30
    Thanks,
    Gopi

  • How to change the button colour automatically????

    i want to change the button color automatically ,if there is no data in next page ....plzz help

    Hi,
    create a binding for the data collection displayed on next page and do
    styleClass=#{bindings.iterator.estimatedRowCount<=0?'redClass' : ''}
    Then define a custom skin (see how to skin an application in the web developer guide) and use
    .redClass .af|commandButton{background-color:red}
    in this skin. Now when the page renders or when you PPR the button, the color should apply or not. Btw, the same EL on the disabled property or the rendered property would do the same trick (probably better than just a color change)
    Frank

  • How to change the button dynamically?

    Hi,
        My Application is that,when i will press the button(on state-Enliglish text will come on the button,off state-Hindi Text will come on the button).
    So,my problem is that i can't write hindi text on the button,so only way is that i can port the image from the file,so how cal i do this without customizing the button.
    With Regards
    Dibya

    Broken Arrow wrote:
    Baji wrote:
    Place a boolean button in the LabVIEW front pannel and right click>>Advance>>Customize. ......
    Message Edited by Baji on 05-29-2009 04:23 PM
    The question, for whatever reason, was how to do this without customizing the button, although your solution is obviously the best way to do it, and how it is meant to be done.
    So, my question to the original poster, why can't you customize the button like Baji has suggested?
    Agreed.
    I would also encourage posting both in English and your native tongue to try and clarify the issue.
    Looking forward...
    Dynamic language changes are best handled using property nodes to change the captions and text of all FP objects. It is a lot of work to set-up the first time but once completed, maintaining the code is straight froward.
    If there are issues with just changing properties not fullfilling all reqs then a Picture Control takes care of most of the "all other cases" rather well (but is seldom trivial).
    Ben
    Ben Rayner
    I am currently active on.. MainStream Preppers
    Rayner's Ridge is under construction

  • How to change edits in multiclips

    I have been working with multiclips for some weeks now. But I have not found out how to make changes in the cuts (switching between the angles on the timeline).
    I have learned (the hard way ;-)that I should not render a multiclip, because then I cannot change the clip the way I want to.
    But I think FCP should allow me to correct the exact spots of my cuts in an unrendered timeline. Until now, I only use the 'make undo' command. Can't I change cuts I made yesterday or last week? Do I have to work through the whole multiclip again?

    But I have not found out how to make changes in the cuts (switching between the angles on the timeline).
    So you've edited your multiclip into a sequence and you want to change the angles that you've selected?
    If that is the case, the easiest way to do that is to control-click on the video and/or audio angle in the (un-collapsed) multiclip in your timeline and select a new angle for the Active Angle property. Also, in case it's not clear from your experiences, you can most certainly Add Edit (Control-V) in the timeline and then alter the angle (by control-clicking) for only a portion of your previous cut. And, as stated already, if you select the edit point, you can roll your edits as needed.
    Or, if you want to do this while previewing/playing:
    Load the Multiclip keyboard layout (Tools > Keyboard Layout > Multi-Camera Editing)
    If you'd like to watch the Multiclip view in the Viewer, make sure the Playhead sync is set to Open (Control-Shift-O)
    Now, when playing press the = key on your numeric keypad will it will place a marker which tells FCP to switch to the Next Angle for that cut in your multiclip once you stop playback (Pressing the Clear key - also doubling as the Num Lock key - on the numeric keypad places a marker to switch to the Previous Angle)
    If you've got an Angle in mind, you can simply press 1-0 on the numeric keypad to place a marker to switch to that angle (the 0 key is for angle 10, by the way)
    Finally, if you simply want to do this while paused, the keyboard shortcuts (from steps 3 & 4) work to instantly change the angle for your cut.
    Or is all this not working for you?
    Dual 1.42 G4, 2GB RAM, 9800 Pro, 20" Cinema;   Mac OS X (10.4.6)   Final Cut Studio 5.1

  • How to change "Edit In" behavior

    I have Photoshop CC installed in the Applications folder of my startup drive, as normal.  I also have a backup drive online which backs up the startup drive each evening.  LR 5.5 insists on using PS from the backup drive for editing, instead of the copy in the Applications folder.  If I turn off the backup drive, it still refuses to start the other copy.  How can I change this?  Thanks...

    That is a pain..
    I am sure that I had to delete the Lightroom Preference File and maybe even the PS one to solve this.
    You can find the Preference files through this link: http://helpx.adobe.com/lightroom/kb/preference-file-locations-lightroom-41.html
    Do it with the back up drive disconnected.

  • How to change the button lable for LOV ??

    when you press for lov you will get this LOV pop up. At the pop up, there are button , CANCEL,OK and FIND. i want to change to different word.
    any idea...how to do it.
    hairol

    see.. this is my problem,
    i'm writing a program to be used by users who don't speak english. I can change the prompt, lable and since the character set used is similar to english and that language is not supported so we use english.
    the problem is that these three button cannot display correct word for it. so my application will become half english and half other language.
    It believe it looks ugly.
    can't oracle do something to solve this problem.
    hairol

  • How to change web button and bars colors??

    is there anyway to change illustrators default web buttons and bars after they are dragged to the canvas. it seems a lot of the buttons are yellow or blue. i wanted to specifically change the color of a "talk bubble." thanks

    You haven't specified which version of Illustrator you are using, but I will assume for purposes of this discussion, that my version, CS3, is not vastly different from yours. The "Web Buttons and Bars" is a collection of symbols, which gives you several options. When you drag a symbol to the artboard three buttons appear in the Control Panel: Edit Symbol, Break Link, and Duplicate. Each affords you certain option for editing the symbol.
    Edit Symbol puts the symbol into Isolation Mode, which allows access to the parts of the symbol through the Layers Panel and the Appearance Panel, and may be changed using any colors, effects, transformations, additions, deletions, or anything else you choose to do to it. When you are finished editing, and exit Isolation Mode, the changes you have made will appear in the symbol in the Symbols Panel and in any instances of the symbol you have put on the artboard.
    Break Link turns the symbol instance you have selected into an object which may be changed in any manner you choose, just as if you had built it yourself and then changed your mind. Changes to the object will have no effect on other instances of the symbol, nor on the symbol in the Symbols Panel, because it is no longer a symbol and is completely unrelated to either. If you wish, you may turn the edited object into a new symbol.
    Duplicate turns the selected symbol instance into a new symbol, identical to the original but having no connection either to it nor to other instances of the original. If the first symbol was named "Original," then a new one will appear in the Symbols Panel named "Original 1." The same options will be available in the Control Panel, and any changes you make will only be applied to the new symbol and any instances of it that you may have put onto the artboard.
    You may save your edited symbols through the Symbols Library Menu in the Symbols Panel.
    If any of this is unclear, doesn't work, or is flat wrong, please let me know.
    Peter

  • A question about how to change a button in a JPanel during runtime

    I am a beginner of GUI. Now I am trying to change a specific component, a button, when the application is running. For example, I have 3 buttons in a JPanel. Each button has its onw icon. If I click one of them, it will change its icon, but the other two don't change. I don't know if there is any method for changing a specific component during runtime. If any one knows please let me know, I will appreciate that very much!!!

    What you're going to have to do is loop inside the actionlistener but still have accessability to click while its looping. I don't know much about it, but I think you're going to need a thread. Try something like this... (it doesn't work yet, but I have to take off)
    import java.awt.*;
    import javax.swing.*;
    import java.awt.event.*;
    class buttonxdemo extends JFrame implements ActionListener{
      Buttonx mybutton;
      //set it all up, make it look pretty  =]
      public buttonxdemo()
           mybutton = new Buttonx("default");
           getContentPane().add(mybutton.thebutton);
           mybutton.thebutton.addActionListener(this);
           this.setDefaultCloseOperation(3);
           this.setSize(200,200);
      public void actionPerformed(ActionEvent ae){
        if (ae.getSource() == mybutton.thebutton)
             if (mybutton.keepGoing)
               mybutton.keepGoing = false;
                else if (!mybutton.keepGoing)
                     mybutton.keepGoing = true;     
          mybutton = new Buttonx(/*Icon,*/"My Button");
          //getContentPane().remove(mybutton);
          //getContentPane().add(mybutton.thebutton);
          mybutton.startstop();
      }//actionperformed
      static void main(String args[])
           new buttonxdemo().show();
    } //movingicondemo
    class Buttonx extends Thread{
      public boolean keepGoing;
      //public Icon ICx;            //perhaps an array, so you can loop through?
      public String strbuttonx;
      public JButton thebutton;     //may have to extend JFrame?
      public Buttonx(/*Icon IC,*/ String strbutton){
        //ICx = IC;
        strbuttonx = strbutton;
        thebutton = new JButton(strbuttonx);
      public void startstop()
        int i = 0;
        while (keepGoing)
          thebutton.setLabel(strbuttonx.substring(0,i));
          //if an array of Icons ICx
          //thebutton.setIcon(ICx);
    i++;
    if (i > strbuttonx.length() - 1)
    i = 0;
    try
         Thread.sleep(1000);
    catch (InterruptedException ie)
         System.out.println("sleep caught: " + ie);
    }//startstop()
    }//buttonx
    kev

  • How to change the Button content as CamelCasing in Windows phone 8.1 Message dialog

    This was already raised in
    Stack over flow, While showing the native Message dialog in Windows phone, i cant change the captions as camel case of command buttons. Is this a bug with windows phone 8.1(WinRT) are is there any workaround to fix this issue?
    Sankar

    This isn't recommended and violates the system style.
    If you want a custom dialog you need to use a different control. The MessageDialog always lower cases the buttons to match the system style and is not generally customizable.
    If you use a ContentDialog you can customize it fairly extensively, and it doesn't try to fix the case of its buttons. You'll probably want to create your own ContentDialog class (there's a template under Add.New Item...) with your desired contents, but here's
    a quick content-free example:
    ContentDialog cd = new ContentDialog();
    cd.Title = "My Title";
    cd.PrimaryButtonText = "CoNtInUe";
    cd.SecondaryButtonText = "sToP";
    await cd.ShowAsync();
    Also note that the guidelines
    for message dialogs suggest using clear and specific verbs rather than generic OK/Cancel.

Maybe you are looking for

  • W-540 in a 12 volt DC environment

    I'd like to take my W-540 with me on an old sailboat this summer.  My T410i would run and charge from the boat batteries, as long as the engine was running, via a Lenovo adapter that plugs into a standard "cigarette lighter socket." The W-540 require

  • Help- How do I Make a High Resolution Gif in Flash?

    So I've been surfing the net trying to find a way to get a 100% resolution from Flash to Gif and can't find it. Here is the deal, I've got CS5 Premium Suit and I started doing animation in photoshop. It took forever but once I got it done it looked a

  • Object Rotate Axis Point

    Re InDesign CS5, is there any way to fix a general preference to make objects rotate on their central point rather than, say for example, the top left box node in the case of a text box? I sometimes rotate an object and it disappears off the artwork.

  • [SOLVED] Install Gnome DE without Pulse Audio?

    I currently have XFCE4, E17 and Fluxbox installed. I was thinking about installing Gnome DE. But I have alsa set up nicely and I do NOT want pulseaudio (Pulseaudio seems to be nothing but headaches for me.) So is there a way through pacman that I can

  • New comp says startup disc has no more space.

    My iMac 2013 desktop is 5 days old.  I bought it with Mountain Lion OS X 10.8.  It has been giving me a flag when I have more than 5 things open (such as iTunes, Chrome, Photoshop and MS Word) saying "Your Mac OS X startup disk has no more space avai