Add "*" infront of the label  in the error message popup window

Dear all,
I am new in ADF, I would like to add an "*" infront of the Salutation label in the error message popup,
does anybody know how to do it? pls help me out in this...thanks
PS: The Salutation is a af:selectOneChoice component with required validation,
and if I modified the Salutation to af:inputText with required validation the "*" is shown automatically.
http://dl.dropbox.com/u/11032207/screen%202012-12-18.jpg
Edited by: user5638657 on Dec 18, 2012 6:04 PM

Here is the jsf, thanks
<?xml version='1.0' encoding='UTF-8'?>
<jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.1"
xmlns:af="http://xmlns.oracle.com/adf/faces/rich"
xmlns:f="http://java.sun.com/jsf/core">
<af:panelBorderLayout id="pbl1">
<f:facet name="start"/>
<f:facet name="bottom">
<af:panelGroupLayout id="pgl3">
<af:popup id="p1">
<af:noteWindow id="nw1">
<af:outputText value="#{particularsBundle['TEXT.GENERAL.NOTE.SURNAME']}"
id="ot13"/>
</af:noteWindow>
</af:popup>
</af:panelGroupLayout>
</f:facet>
<f:facet name="end"/>
<f:facet name="top">
<af:group id="g1">
<af:outputText value="#{particularsBundle['TEXT.PARTICULARS.PAGE']}"
id="ot2" inlineStyle="color:Black; font-size:large;"/>
<af:spacer width="10" height="10" id="s3"/>
</af:group>
</f:facet>
<af:panelGroupLayout id="pgl4" layout="vertical">
<af:outputText value="#{particularsBundle['TEXT.GENERAL.REQUIRED']}"
id="ot5"/>
<af:spacer width="10" height="10" id="s5"/>
<af:panelFormLayout id="pfl1" labelAlignment="start">
<af:panelLabelAndMessage label="#{bindings.UserId.hints.label}"
id="plam1" inlineStyle="color:Black;">
<af:outputText value="#{bindings.UserId.inputValue}" id="ot1"/>
</af:panelLabelAndMessage>
<af:selectOneChoice value="#{bindings.UserSalutation.inputValue}"
label="#{bindings.UserSalutation.label}"
required="true"
shortDesc="#{bindings.UserSalutation.hints.tooltip}"
id="soc1">
<af:selectItem label="#{particularsBundle['SELECT.SALUTATION.MR']}"
id="si1" value="Mr."/>
<af:selectItem label="#{particularsBundle['SELECT.SALUTATION.MRS']}"
id="si2" value="Mrs."/>
<af:selectItem label="#{particularsBundle['SELECT.SALUTATION.MISS']}"
id="si3" value="Miss"/>
<af:selectItem label="#{particularsBundle['SELECT.SALUTATION.DR']}"
id="si4" value="Dr."/>
<af:selectItem label="#{particularsBundle['SELECT.SALUTATION.PROFESSOR']}"
id="si5" value="Professor"/>
</af:selectOneChoice>
<af:inputText value="#{bindings.UserSurname.inputValue}"
label="#{bindings.UserSurname.hints.label}"
required="#{bindings.UserSurname.hints.mandatory}"
columns="#{bindings.UserSurname.hints.displayWidth}"
maximumLength="#{bindings.UserSurname.hints.precision}"
shortDesc="#{bindings.UserSurname.hints.tooltip}"
id="it6">
<f:validator binding="#{bindings.UserSurname.validator}"/>
</af:inputText>
<f:facet name="footer">
<af:spacer width="10" height="10" id="s4"/>
</f:facet>
</af:panelFormLayout>
<af:spacer width="20" height="10" id="s11"/>
<af:panelGroupLayout id="pgl0" layout="horizontal">
<af:commandButton text="#{particularsBundle['BUTTON.CONTINUE']}"
id="cb1"
action="#{updateProfileBackingBean.actionContinue}">
<af:setActionListener from="#{bindings.UserEmail.inputValue}"
to="#{bindings.email.inputValue}"/>
</af:commandButton>
<af:spacer width="20" height="10" id="s2"/>
<!--af:resetButton text="#{particularsBundle['BUTTON.RESET']}" id="rb1"
inlineStyle="height:19.0px;"/-->
<af:resetButton text="#{particularsBundle['BUTTON.RESET']}" id="rb1" inlineStyle="background-position:center top;
background-repeat:repeat-x;
margin:0;
padding-bottom:3px;
padding-top:1px;
text-decoration:none;
white-space:nowrap;"/>
</af:panelGroupLayout>
</af:panelGroupLayout>
<af:spacer width="20" height="10" id="s1"/>
</af:panelBorderLayout>
</jsp:root>

Similar Messages

  • Does anyone know how to correct the download for itunes error message 7 windows 193?

    I'm getting error message 7 (windows 193) when I download new itunes update.

    Try  Troubleshooting issues with iTunes for Windows updates - MSVCR80

  • Help: How add mouse features to let it show the label of the item?

    Hi,
    I'd like to add mouse features so that whem mouse moves over an item, it will show the label of the item. Especially, on the tab of a tab page to show the full label.
    Thank you in advance.
    Jimmy

    Oracle Forms calls this feature "Tooltip", you will find it as property of many items.
    For Tab-Pages Tooltips don't exist because Forms displays Tab-Labels always in full length.
    Peter

  • Need Help to update the labels in the GUI syncronously - Swing application

    Hello everyone,
    I need some help regarding a swing application. I am not able to syncronously update the counters and labels that display on my Swing GUI as the application runs in the background. But when the running of application is completed, then the labels on the GUI are getting updated, But I want update the labels and counters on the GUI syncronously as the code executes... below I am giving the format of the code I have written..............
    public class SwingApp extends JFrame{
            // here i have declared the label and component varibles like...
                      private JTextField startTextField;
           private JComboBox maxComboBox;
           private JTextField logTextField;
           private JTextField searchTextField;
           private JLabel imagesDownloaded1;
           private JLabel imagesDownloaded2;
           private JLabel imagesDidnotDownload1;
           private JLabel imagesDidnotDownload2;
                      private JButton startButton;
    //now in the constructer.............
    public Swing(){
    //I used gridbaglayout and wrote the code for the GUI to appear....
    startButton = new JButton("Start Downloading");
        startButton.addActionListener(new ActionListener() {
          public void actionPerformed(ActionEvent e) {
            try{
                 actionSearch();   //actionSearch will contain all the code and the function calls of my application...........
            }catch(Exception e1){
                 System.out.println(e1);
        constraints = new GridBagConstraints();
        constraints.gridwidth = GridBagConstraints.REMAINDER;
        constraints.insets = new Insets(5, 5, 5, 5);
        layout.setConstraints(startButton, constraints);
        searchPanel.add(startButton);
    //update is a function which initiates a thread which updates the GUI. this function will be called to pass the required variables in the application
    public void update(final int count_hits, final int counter_image_download1, final int didnot_download1) throws Exception{
         Thread thread = new Thread(new Runnable() {
             public void run() {
                  System.out.println("entered into thread");
                  System.out.println("the variable that has to be set is " + count_hits);
                  server_hits_count.repaint(count_hits);
                  server_hits_count.setText( " "+ Integer.toString(count_hits));
                  imagesDownloaded2.setText(" " + Integer.toString(counter_image_download1));
                  imagesDidnotDownload2.setText(" " + Integer.toString(didnot_download1));
                  repaint();
         //this.update(count_hits);
         thread.start();
    //Now in main............................
    public static void main(String[] args){
    Swing s = new Swing();
    s.setVisible(true);
    }//end of main
    }//end of class SwingAbove I have given the skeleton code of my application........ Please tell me how to update the GUI syncronously...
    Please its a bit urgent...............
    Thank you very much in advance
    chaitanya

    First off, note that this question should have been posted in the Swing section.
    GUI events run in a separate thread (the AWT / Event Dispatch Thread) than your program.
    You should be invoking AWT/Swing events via SwingUtilities.invokeLater().
    If for whatever reason you want to have the program thread wait for the event to process
    you can use invokeAndWait().
    http://java.sun.com/javase/6/docs/api/javax/swing/SwingUtilities.html

  • Folder action to change the label of the folder

    Hi all
    I would like to use Automator/Folder Actions to set the Label of the folder to show that it contains a file that was created or modified as follows:
    Red if in the last three days,
    Orange if over three days but less than seven; and
    Yellow if over seven days but less than fourteen
    Oh, and clear the folder label if the contents of the folder are over fourteen days old.
    Is it possible to do using Automator and folder actions?
    Thanks
    Jai
    iMac G5; iBook G3; PB165c; PB170; Mac IIcx; Mac SE/30; Mac SE; Mac Plus; Newton 130; 2gen iPod 10G     Mac OS X (10.4.7)   MacUser since 1984... and waiting for a tablet (like the Nokia 770 with MacOSX)

    In Automator-No
    The trigger for folder actions to run is the act of adding a file/folder to the folder which has the action applied. If you don't add anything, they won't do anything.
    You could probably get close to what you want using Smart Folders. It won't be color-coded or perfect though because modifying a file doesn't always reflect on the modification date of the folder. And parent folders are not affected by changes made in sub-folders.

  • TFS Customization - Can we just rename the label of the control rather than renaming fields?

    I wanted to reuse some existing fields with different values. I can customize XML to add different values for the existing field since we import the changes to specific project. And I will just rename the Label of the control rather than renaming the field
    which will create some potential problems on importing the previous TFS data. I just wanted to ensure that this is the proper way to do it. I did the changes in test server and it works fine. But I need a consultation from experienced guys to know whether
    they faced any issues in this thatswhy I am here.

    Changing the label is perfectly fine. This will not affect any migration attempts.  The form label for a field is separate from the field name and refname.

  • Chart:: preventing the label of the Y axis from being overlapped

    Hi,
    I am trying to figure out how to prevent the label of the Y axis from being overlapped by the axis tick labels.
    My best guess would be to add some padding on its right to give some more room to the tick labels (as well as decreasing their font size).
    But having looked at the "Styling chart with CSS" guide and at caspian.css, it seems there is no selector or particular styleclass defined for this label (same for the label of the X axis).
    Any clue before I end up writing another Jira bug fix request?
    Thanks
    Edited by: bouye on Feb 22, 2012 2:46 PM

    Hi Shwu,
    Please have a look at this discussion:
    Crystal Report Bar Chart Y Access Setting
    -Abhilash

  • Can I go back to the old look of the 'server not found' error messages?

    After updating to Firefox 32, I noticed that the 'server not found' error messages now look differently. I don't like the new look, so I wonder if you know about an add-on that restores the old look. I've tried searching for it, but I don't know the proper name of these error messages, so I'm not sure what search phrase I should use.

    To recall what it looked like before, I did a search: [https://www.google.com/search?q=server+not+found+picture+firefox&client=firefox-beta&hs=wiy&rls=org.mozilla:en-US:official&channel=fflb&tbm=isch&tbo=u&source=univ&sa=X&ei=QUIXVPz7Eou7ogSl8YD4Bg&ved=0CB8QsAQ&biw=1036&bih=554#facrc=_&imgdii=_&imgrc=dFf2lmJRgVlgyM%253A%3BS3EdEuvyajjWqM%3Bhttp%253A%252F%252Fi.stack.imgur.com%252F2ZJR2.jpg%3Bhttp%253A%252F%252Fsuperuser.com%252Fquestions%252F584305%252Ffirefox-says-server-not-found-because-its-adding-www-how-do-i-stop-this%3B851%3B455 Images of Server not found in Firefox]
    I did not find an addon, but I did find an old hack for the profile folder in this thread: [http://forums.mozillazine.org/viewtopic.php?f=7&t=492177&start=0]
    EDIT:
    There was also [https://addons.mozilla.org/en-US/firefox/addon/errorzilla-mod/ ErrorZilla addon]

  • Problem of putting the label in the middle.

    I am having a problem of putting the label in the middle.
    below are my codes.
    import java.awt.*;
    import java.applet.Applet;
    public class glay1 extends Applet{
    public void init(){
    Button button1;
    TextField textfield1;
    button1 = new Button("Set fuel Price(p)");
    textfield1 = new TextField(" ");
    Label label1, label2, label3, label4;
    label1 = new Label("pump1", Label.CENTER);
    label1.setBackground(Color.white);
    label2 = new Label("pump2", Label.CENTER);
    label2.setBackground(Color.white);
    label3 = new Label("pump3", Label.CENTER);
    label3.setBackground(Color.lightGray);
    label4 = new Label("pump4", Label.CENTER);
    label4.setBackground(Color.lightGray);
    Panel pc = new Panel();
    Panel ps = new Panel();
    setLayout(new BorderLayout());
    setBackground(Color.black);
    pc.setLayout(new GridLayout(2,2,220,50));
    pc.add(label1);
    pc.add(label2);
    pc.add(label3);
    pc.add(label4);
    ps.add(button1);
    ps.add(textfield1);
    add("South", ps);
    add("Center", pc);
    My problem is the label all are put on each corner.
    How to put the label to the middle?
    but I don't want the label to join one another,
    just put them more to the middle only.

    btw, I haven't actually used GridLayout myself but wouldn't it work for you to use the methods setHgap(int hgap) and setVgap(int vgap)?
    With GridBagLayout you can add components of varying sizes and you can easily position them on the grid. Look at this example, adding components to a JPanel called resultsPanel:
              FrameTools.addComponent(resultsPanel,new JLabel(" "),c,gridbag,0,0,1,1,5,1);
              FrameTools.addComponent(resultsPanel,new JLabel(" "),c,gridbag,0,1,1,1,1,1);
              FrameTools.addComponent(resultsPanel,resultFileLabel,c,gridbag,1,1,1,1,1,1);
              FrameTools.addComponent(resultsPanel,new JLabel(" "),c,gridbag,2,1,1,1,1,1);
              FrameTools.addComponent(resultsPanel,loadResultFileButton,c,gridbag,3,1,0,0,1,1);
              FrameTools.addComponent(resultsPanel,new JLabel(" "),c,gridbag,4,1,1,1,1,1);
              FrameTools.addComponent(resultsPanel,new JLabel(" "),c,gridbag,0,2,1,1,5,1);
              FrameTools.addComponent(resultsPanel,new JLabel(" "),c,gridbag,0,3,1,1,1,1);
              FrameTools.addComponent(resultsPanel,linkerFileLabel,c,gridbag,1,3,1,1,1,1);
              FrameTools.addComponent(resultsPanel,new JLabel(" "),c,gridbag,2,3,1,1,1,1);
              FrameTools.addComponent(resultsPanel,linkerButton,c,gridbag,3,3,0,0,1,1);
              FrameTools.addComponent(resultsPanel,new JLabel(" "),c,gridbag,4,3,1,1,1,1);
              FrameTools.addComponent(resultsPanel,new JLabel(" "),c,gridbag,0,4,1,1,5,1);
                   The addComponent(...) method looks like this:
         public static void addComponent(Container target, JComponent comp, GridBagConstraints c, GridBagLayout g, int x, int y, int wx, int wy, int w, int h)
                  c.fill = GridBagConstraints.BOTH;
                  c.gridx = x;
                  c.gridy = y;
                  c.weightx = wx;
                  c.weighty = wy;
                  c.gridwidth = w;
                  c.gridheight = h;
                  g.setConstraints(comp, c);
                  target.add(comp);
           }     x and y specifies the position of the component and w and h the size of it. But really, read the tutorials!
    /P

  • When I open itunes to play content I've already purchased and while attempting to view trailers for movies in the itunes store, I receive a generic error message from windows, and I'm directed to reinstall the latest version of itunes.  Not a fix.  Help?

    When I open itunes to play content I've already purchased and while attempting to view trailers for movies in the itunes store, I receive a generic error message from windows, and I'm directed to reinstall the latest version of itunes.  Not a fix.  Help?

    after perusing other subjects with playback issues: 
    this is the fix: 
    -Launch Control Panel - Double click Quicktime, If you do not see quicktime, look on the top left side of control panel and switch to classic view. This will then allow you to see Quicktime.
    -Now click the advanced tab and click on Safe Mode GDI Only, Apply, then ok.

  • I have install last update for i pod(ios5) but during installation there was one problem....i have restore my ipod and now i have lost all my buyed music!!Is not possible download it....?What are the details, including any error messages, related to your

    I have install last update for i pod(ios5) but during installation there was one problem....i have restore my ipod and now i have lost all my buyed music!!Is not possible download it....?What are the details, including any error messages, related to your question?

    Have you not got the music on your computer and/or on backups on, for example, external drives or CDs/DVDs ?

  • I received a $25 iTunes gift card when cashing in my Air Miles points and when removing the label on the back or the card (which had tape over top of it) there is a number missing from the 16 digit number.  What do I do?

    I received a $ 25 iTunes gift card - when I cashed in some air miles points.  Unfortunately the label on the back was covered in tape and when I tried to remove the tape and the label I found that there were only 15 numbers out of the sixteen.  How can I find out what the number/letter is that is missing?  If I provide you with the GCA # will that help?
    Please get back to me,

    Consult this handy guide: iTunes Store: Invalid, inactive, or illegible codes

  • I have tried to update my iPod Touch 4G to the latest update. After the 4 hours an error message appears saying iTunes had lost connection even when I am fully connected to the internet. I have repeated the update 4 times now with not luck. Any ideas?

    I have tried to update my iPod Touch 4G to the latest update, I currently have iOS 4.1. After the 4 hours an error message appears saying iTunes had lost connection even when I am fully connected to the internet. I have repeated the update 4 times now with not luck. Any ideas?
    Thanks in advance
    Adam

    If you get a network timed out error, try disabling the security software on the computer during the download and install.
    You can also try a direct download andinstall by:
    iPod, iPhone and iPad Firmware Download
    Nera the top of the page aretheinstructions for selecing the download for the install.

  • What is the cause of this error message?

    What is the cause of this error message?
    What is the solution to this problem ?
    Thanks

    First part of your question:
    Error Message
    %CFT_API-3-CFT_ERRMSG_NO_MEMORY: [chars] [chars] [dec]
    Explanation
    The system was unable to supply the requested memory for flow processing to continue
    Recommended Action
    Reduce other system activity to ease
    memory demands. If conditions warrant,
    upgrade to a larger memory configuration.
    link:
    www.cisco.com/c/en/us/td/docs/ios/system/messages/guide/sm_cn02.pdf
    Pretty generic, but its a start, the process in question is cft_flow_lookup.
    This may be an indication of a deeper resource issue.

  • How long should I let Safe Mode startup run? I keep getting the "disk0s2 i/o error" message and I'm just not sure when to give up and try a different method. I already ran disk utility in Recovery Mode and it said there were no repairs needed.

    How long should I let Safe Mode startup run? I keep getting the "disk0s2 i/o error" message and I'm just not sure when to give up and try a different method. I already ran disk utility in Recovery Mode and it said there were no repairs needed but it still kept getting stuck on the apple loading screen.

    You have limited opportunity to attempt to create a backup of your created files.
    That is what the SafeBoot or safemode appears to allow you -- at the moment.
    Since the hard disk drive exhibits signs of failure or other major issues, plan
    on a replacement in the near future. You may be able to get the computer to
    start up in a regular full OS X (not safe mode) but consider its hours are limited.
    An externally enclosed hard disk drive (with own power supply, not relying on
    Mac ports to run it) is a good basic means of which to use a disk utility to make
    a copy or a Clone of the current OS X. This may help retrieve an archive that
    could be used along with a Time Machine backup, to restore your Mac once you
    get a new hard drive installed inside.
    Good luck & happy computing!

Maybe you are looking for

  • Help with save as

    I have a fillable form we use everyday when people go to save the form they do not clear out the file name that is already there (the master file name) and they just save it to the file name that is there already.  So the next time we go open the for

  • I have got my ipod synced to a computer that is no longer in use and I want to sync all my data from my current ipod to my new computer without erasing all my data...how do I do this??

    Hi I really need some help with this problem I have got music on the ipod that I really want to put onto my new computer so I can sync it to my phone!!

  • INSPECTIONPLAN_CREATE01: to store long text

    Dear QM Gurus, Here is my scenario:- We have an external database which stores all the master inspection plans, master inspection characteristics and inspection methods. SAP QM is used to perform all the QM transactional data only. How we intend to b

  • EXIT for MIGO and MB01

    Hello, I need to find a BADI or USER-EXIT for MIGO and MB01 at the time of posting, to store in table BSEG fields ZBD1T LIFNR ZTERM the table EKKO. I found User-exits several but none contains the BSEG as output instead contains MSEG and the MKPF whi

  • Slow averaginig problem?

     Hi i am taking data at higher Baudrates from a serial port.Now i have to average 250 samples coming in to give out one sample.I am using formula node for implementing my conditions.But the sample is avergaed out at slower rate giving 0.5 sample/sec.