How to keep Calendar Helper always on top?

In my jsf page, I have a input field with a calendar helper. Below this, is a drop down combo box. My problem is that when i click on teh calendar helper, the calendar appears in a drop down manner, and inspite of this, my combo box which is below, overlaps and appears in the middle of my calendar. Is there a way to avoid this? Perhaps by keeping the calendar always on top, or atleast making the calendar appear on top rather as a drop down.?
My code snippet is like this:
<TR>
                                             <TD width="40%" align="right" height="30"><h:outputText
                                                  styleClass="normalText" id="text12" value="#{msg.To}"
                                                  style="color: black; "></h:outputText></TD>
                                             <TD width="60%"><h:inputText styleClass="inputText" id="text13"
                                                  onblur="return func_2(this, event);">
                                                  <f:convertDateTime dateStyle="short" />
                                                  <hx:inputHelperDatePicker />
                                                  <hx:inputHelperAssist inputAssist="true" autoTab="true" />
                                             </h:inputText><h:message styleClass="message" id="message2"
                                                  for="text13"></h:message></TD>
                                        </TR>
                                        <TR>
                                             <TD width="40%" align="right" height="30"><h:outputText
                                                  styleClass="normalText" id="text10" value="#{msg.Status}"
                                                  style="color: black; "></h:outputText></TD>
                                             <TD width="60%"><h:selectOneMenu styleClass="selectOneMenu"
                                                  id="menu1">
                                             <f:selectItems value="Option1" /></h:selectOneMenu></TD>
                                        </TR>

We are having the same results. Have you heard of a "fix" for this?

Similar Messages

  • How to keep a Stage always on top...

    Hi,
    Anyone know how to tell one or more stages to always be in front ( z- order ) of another stage.
    I'm not talking about modality, I need the stage in the back to be responsive.
    Cheers,
    Nuwanda

    I know that using focused property really looks so mess for each and every Stage. But we have no option than that.
    The code which I've given you works for controlling many stages not only two.
    For eg.
    Make a CustomClass which arranges the stages on Z-ORDER.
    public class StageOrder implements ListChangeListener<Stage>{
        ObservableList<Stage> stages = FXCollections.observableArrayList();
        private boolean FIRST_TOP = true;
        public void setFirstTop(boolean b){
            FIRST_TOP = b;
        public StageOrder(){
            stages.addListener(this);
        public ObservableList<Stage> getStages() {
            return stages;
        public void refresh(){
            if(FIRST_TOP){
                for(int i = 0; i<stages.size(); i++){
                    stages.get(i).toBack();
            }else{
                for(int i = 0; i<stages.size(); i++){
                    stages.get(i).toFront();
        public void onChanged(Change<? extends Stage> c) {
            refresh();
        public void add(final Stage s){
            stages.add(s);
            s.focusedProperty().addListener(new ChangeListener<Boolean>(){
                public void changed(ObservableValue<? extends Boolean> observable, Boolean oldValue, Boolean newValue) {
                   refresh();
    }Now to make things worked as Z-order :
    final StageOrder stack = new StageOrder();
            stack.setFirstTop(false);
            //FIRST
            Group g = new Group();      
            Scene scene = new Scene(g);
            primaryStage.setTitle("1");            
            primaryStage.setScene(scene);
            primaryStage.setVisible(true);
            //SECOND
            Group childGrp = new Group();
            Scene childScn = new Scene(childGrp);
            Stage child = new Stage();       
            child.setTitle("2");      
            child.setScene(childScn);
            child.setVisible(true);
            //THIRD
            Group childGrp2 = new Group();
            Scene childScn2 = new Scene(childGrp2);
            Stage child2 = new Stage();               
            child2.setTitle("3");      
            child2.setScene(childScn2);
            child2.setVisible(true);
            //ADDING ALL STAGES
            stack.add(primaryStage);
            stack.add(child);
            stack.add(child2); The above code is applicable only when the focused is happened inside scene. The ordering get's distracted by TitleBar Mouse Clicked. So I would like you to make your own custome titlebar for making things worked properly.
    Thanks.
    Narayan

  • How to keep a image lways on top of internal frames?

    Hello.
    I have a main frame with sevral internal frames. I need to put a image on this
    window that can move this image remotely.
    How to keep this image always on top of these internal frames?
    Is there any panel that can put on top of these internal frame?
    Many thanks.

    Thanks for you reply and sorry for my break English.
    I mean I need a image that moving on a frame which has internal Frames.
    When the image meet a internal frame while it's moving, this image will go under of the internal frame , so that we can not see the image any more.
    What i want to do is that let the image always keep on top of the window,
    even if it meet a internal frame.
    Just imagine the windows cursor. A cursor is always visible no matter where is it.

  • AS3 how to put the buttons always on top of the external swf in the code below?

    how to put the buttons always on top of the external swf in the code below?  I am  beginner use to as3, can someone help me?
    thanks, for all!!
    var Xpos:Number = 110;
    var Ypos:Number = 180;
    var swf:MovieClip;
    var loader:Loader = new Loader();
    var defaultSWF:URLRequest = new URLRequest("swfs/eyesClosed.swf");
    loader.load(defaultSWF);
    loader.x = Xpos;
    loader.y = Ypos;
    addChild(loader);
    // Btns Universal function
    function btnClick(event:MouseEvent):void {
    removeChild(loader);
    var newSWFRequest:URLRequest = new URLRequest("swfs/" + event.target.name + ".swf");
    loader.load(newSWFRequest);
    loader.x = Xpos;
    loader.y = Ypos;
    addChild(loader);
    // Btn listeners
    eyesClosed.addEventListener(MouseEvent.CLICK, btnClick);
    stingray.addEventListener(MouseEvent.CLICK, btnClick);
    demon.addEventListener(MouseEvent.CLICK, btnClick);
    strongman.addEventListener(MouseEvent.CLICK, btnClick);

    use:
    var Xpos:Number = 110;
    var Ypos:Number = 180;
    var swf:MovieClip;
    var loader:Loader = new Loader();
    var defaultSWF:URLRequest = new URLRequest("swfs/eyesClosed.swf");
    loader.load(defaultSWF);
    loader.x = Xpos;
    loader.y = Ypos;
    addChild(loader);
    // Btns Universal function
    function btnClick(event:MouseEvent):void {
    removeChild(loader);
    var newSWFRequest:URLRequest = new URLRequest("swfs/" + event.target.name + ".swf");
    loader.load(newSWFRequest);
    loader.x = Xpos;
    loader.y = Ypos;
    addChildAt(loader,0);
    // Btn listeners
    eyesClosed.addEventListener(MouseEvent.CLICK, btnClick);
    stingray.addEventListener(MouseEvent.CLICK, btnClick);
    demon.addEventListener(MouseEvent.CLICK, btnClick);
    strongman.addEventListener(MouseEvent.CLICK, btnClick);

  • How to keep f4 help for a particular field in module pool problem-urgent

    hi all,
    i am displaying output using alv list display. here i am showing my pf status here. in this status i have one button called position. when i click this button it is showing pop up inside this pop up  i am showing appln
    for this i need keep f4 help. anybody can tell me how to keep f4 help fo this field.
    thanks,
    maheedhar.t

    Hi Maheedhar,
    You need to use function module POPUP_GET_VALUES.
    If you want see sampl eprogram for this check the program RSSPO410.
    Execute this program and input Example2 = X in the selection screen.
    Code from the above Program:
    DATA: BEGIN OF FIELDS OCCURS 1.
            INCLUDE STRUCTURE SVAL.
    DATA: END OF FIELDS,
          RETURNCODE(1)       TYPE C,
          POPUP_TITLE(30)     TYPE C.
      POPUP_TITLE       = 'Nachrichten anzeigen'(200).
      CLEAR FIELDS.
      FIELDS-TABNAME    = 'T100'.
      FIELDS-FIELDNAME  = 'ARBGB'.
      FIELDS-FIELDTEXT  = 'Arbeitsgebiet'(202). "Text nicht aus DTEL
      APPEND FIELDS.
      CALL FUNCTION 'POPUP_GET_VALUES'
           EXPORTING POPUP_TITLE     = POPUP_TITLE
           IMPORTING RETURNCODE      = RETURNCODE
           TABLES    FIELDS          = FIELDS.
      IF RETURNCODE = 'A'.
        If Cancel is clicked
      ELSE.
        If OK is clicked.
        Table FIELDS congtains the input data.
      ENDIF.
    Thank you
    Ramakrishna

  • How do I keep form6.0 ALWAYS ON TOP?

    Hello friends,
    Like Oracle Help, Is there any option in forms6.0 to keep them 'always on top' of other applications.
    Thanx in advance,
    regards,
    Praveenkumar Talla

    Hello,
    Actually I want to keep the runtime form at the top of other application, How to do this?
    regards,

  • How to keep f4 help in module pool-urgent

    hi,
    i have one doubt.
    in my screen '101' i have one field. for this i have to keep f4 help. when i press f4 help it has to show 02 only in f4 help screen . can you please tell me what shall i do this case.
    thnaks,
    maheedhar.t

    hi
    chk this thread
    Re: HOW to ADD F4 help to a  field on SCREEN (MODULE POOL)
    chk sudheer's post, which says
    In the Layout, Just double click on the field, then Attributes pop up will open, there we have an option to enter the F4 help(a Check box) there itself, even you can give the Data element then the F4 help will come automatically. or else, you can give the Search help in the attributes screen, then the F4 will come automatically
    **reward if helpful
    regards,
    madhu

  • How to open a form always on top but not at focus?

    I had a form application which will call another form as reference. May I know that is there any way I can to to set the called form always on top, but the focus is still set at the calling form so that I can still operate on the calling form?
    Many thanks
    MInny

    Hi:
    Thank you for reply to my question.
    I have tried your codes and apply them the following the form. However, I always got the following error:
    Error: (WWV-00000)
    No conversion performed for type INTEGER, value . (WWC-49102)
    No conversion performed for type INTEGER, value . (WWC-49102)
    No conversion performed for type INTEGER, value . (WWC-49102)
    No conversion performed for type INTEGER, value . (WWC-49102)
    My codes is:
    declare
    request_no number;
    blk varchar2(30) := 'DEFAULT';
    l_url varchar2(4000);
    begin
    request_no := p_session.get_value_as_NuMBER(
    p_block_name => blk,
    p_attribute_name => 'A_WORK_REQUEST_ID');
    l_url := 'portal30.wwa_app_module.link?p_arg_names=_moduleid&p_arg_values=11880470335&p_arg_names=_sessionid&p_arg_values=&p_arg_names=work_request_id&p_arg_values='||request_no;
    portal30.wwa_app_module.set_target(l_url,'call');
    end;
    then,
    I created another form which has two fields and the dattype of pk is varchar2 and change manually put the pk's p_arg_value into the url.
    e.g.
    l_url:='PORTAL30.wwa_app_module.link?p_arg_names=_moduleid&p_arg_values=9029417810&p_arg_names=WORK_AREA_CD&p_arg_values=APP';
    portal30.wwa_app_module.set_target(l_url,'call');
    However, I still get the error message as below:
    Error: (WWV-00000)
    No conversion performed for type INTEGER, value . (WWC-49102)
    No conversion performed for type INTEGER, value . (WWC-49102)
    No conversion performed for type INTEGER, value . (WWC-49102)
    No conversion performed for type INTEGER, value . (WWC-49102)
    No conversion performed for type INTEGER, value . (WWC-49102)
    Your help would be highly appreciated.
    Wei Ye

  • Stage.nativeWindow.alwaysInFront how to keep the window always in front

    Hi, I've just written and application that needs to always be in front of the other applications. I have set the application's nativeWindow.alwaysInFront property to true, but, after a few other air applications open the application will get pushed behind. It seems to work when the first application opens up, but after opening a second time it will no longer be on top. Any suggestions? Thanks.

    One way is to browse your iTunes Music Library in the Finder and open the video file with QuickTime instead of playing it in iTunes. Then you have always-on-top and also fixes the "full screen on 2nd monitor" problem. Maybe not ideal, but a workaround.

  • How can I keep a window always on top?

    Im trying to have a windowed document always be on top of the main Photoshop window to use it as a guide/reference image and also for extracting colors from it. I know this is possible because I have seen it in a Youtube video.

    OSX
    Seems really stupid that you could only do it on Windows.

  • How to keep the dock always on the main screen?

    Hi
    I have a Wacom Cintiq as my secondary screen, positioned below the main monitor of MacBook Pro
    The problem is, that with this positioning, the Dock always jumps to the bottom of the Cintiq screen. I don't want it that way - I need to use Cintiq only as my drawing space, and keep the dock at the main screen. How can I do that (without repositioning the screens in the prefs)?
    Thanks

    Maybe you should consider reinstalling it in order to make it work again!
    Look here:
    http://europe.nokia.com/explore-services/ovi-maps/downloads-and-services
    Good luck and keep us up to date!  
    By clicking the "Kudos!" or the "Solution?" button on the right you can say "Thank You" and you´ll show the author and others that the post is useful.
    The day we stop improving is the day we stop being good.

  • Ical on two computers - how to keep calendars in sync properly

    My setup includes a MacBook Pro and an Imac G4. Until one month ago the G4 was my only computer and I used Ical to publish my work schedule. Now I use the MBP primarily. My desire is to have Ical sync my work schedule on both computers, and also continue to publish it online.
    As of right now whichever calendar is changed first overwrites the online calendar - I think I need to only have one machine publishing the calendar? Also, new events sync nicely through .Mac, but changed or deleted events do not always seem to get updated on the Imac. Any thoughts?

    Stephen,
    It seems to me that you have correctly determined that it makes sense to only publish an identical calendar from one of the computers.
    After appropriately backing up your calendars, you might want to consider Resetting .Mac Sync. It appears as if both of your computers are using 10.4.6, but just in case..."If you sync between computers with different versions of Mac OS X, try to reset the sync data from the computer with Mac OS X 10.4, if possible."
    Make sure that "Synchronize my calendars with other computers using .Mac is checked in the General Preference of the iMac.
    ;~)

  • How to keep the tables headers on top and never scroll with the table?

    does anyone knows the code to do so?
    urgent needed.
    thx.

    Hi
    Do you need a window shows in the below website???
    http://www.milonic.com/mfa/2004-August/004742.html
    If so, view source the page.
    Newt.

  • How to keep a Fabric port always enable in a Cisco MDS 9000 Switch?

    Dear members:
    I work in Datacenter automation solutions using most part of time Virtualization softwares.
    I'm having an interst problem with a server while it is booting thru SAN using a logical volume stored in a EMC DMX4 array.
    We are trying to boot a VMWare ESX 4.1 OS, but when OS tries to change HBA BIOS driver to ESX device driver during boot process, the Server's HBA logged off from MDS Fabric that it is connected, ESX can't boot and I got a ESX standard prompt.
    I think that problem is becuase ESX 4.1 is taking too long to load Storage Drivers during boot process and the consequences is HBA logged off from Fabric.
    I already tried to change FLOGI parameters in HBA and Topology architecture, but I didn't have success.
    If a try to boot a Microsoft OS like Windows 2008, I don't have this behavior, and OS can boot from SAN without any problem.
    Please, if anyone have any idea about how to keep fabric port always enabled, let me know. Any idea or help is very welcome.
    Best Regards.
    Alexandre Nicolau

    Hi,
    You can take a look at this document:
    http://www.cisco.com/en/US/docs/solutions/Enterprise/WAN_and_MAN/QoS_SRND_40/QoSCampus_40.html#wp1099352
    Hope this helps, please rate if it does.
    Kind regards,
    - Adrian.

  • How can i keep the session always live and active

    how can i keep the session live ? i tried to call getmessages every 30 seconds and nothing happens
    i need your help to tell me how to keep session live always
    please i need steps which can help

    i open session
    then i login
    then i change status to active
    then i call dialexternalnumber
    but i want to know how you keep the session active can you please send me the steps in details how you keep your session active ? but please in detailed steps
    many thanks for your great effort

Maybe you are looking for

  • I have tried to update itunes and I get an error message. Any ideas?

    Itunes said it had a update. When I tried to install it gave me the 1114 error message. When I try to open itunes it tells me there was a problem installing itunes. I tried to install itunes from their website but I get an error message their also.

  • HP C7280 all-in-one duplex printing problem - Long and short sided binding!

    I use a HP 7280 all-in-one printer and have the duplexer attached. Up to installing snow leopard I have been able to print two sided documents from ipages no problems. But now every time I try to print a two sided document in flips the second side ve

  • ILife '11 turns iPhoto into useless junk

    So $50 well spent!!!!! iPhoto started and just shows a spinning icon. When you click on anything in the menu it fails with the error below. This was before and after the software update for iPhoto. Joy!!! Process: iPhoto [212] Path: /Applications/iPh

  • LMS 3.1 Syslog Automated Action - How to pass variables to script?

    I would like to pass variables to a windows bat file for processing.  The help seems to suggest that there are 2 available, device and message.  I would like to know how to reference them and what syntax to use to pass them to the batch file.  Are Fa

  • Having trouble with the mail apps

    I am experiencing a number of issues using both the iOS mail app and the Gmail app. My Gmail settings are like this: I have 2 gmail accounts, account1 is general; account2 is for school, job search and whatnot. While on the desktop, I only check my a