Image not going behind other controls

I am having difficulties with something that seems like it should be very simple.  I am making a world clocks application.  I have created all of my clock controls, and now I want to put an image behind them (very light, stretches the whole length of the clocks). 
I have my image uploaded and I added it to the form.  In the layout I stretched it to fit, and did a send to behind.  There it looks how it should, but when I deploy and run it, it is in front of the clocks, not behind.
I also tried changing the Layer setting (in the properties of the image control) to a negative number, and all of the clocks to a positive value, but everytime I leave the image properties and come back in that field is blank again.
Can anyone give me any ideas on this?  Thanks in advance!

Hi,
Check the code pane whether the z-order in your IMG tag is -1?
Which SP you are using?
Regards,
Sooraj

Similar Messages

  • Image not going to display

    Hi Friends
    I am creating html report by using TABLE given below. but image is not going to dispaly.how can i do this.
    i have a table with there colmns are
    FATHER_DETAIL(TABLE NAME)
    F_NAME VARCHAR2(50)
    M_NAME VARCHAR2(50)
    L_NAME VARCHAR2(50)
    DOB DATE
    FATHER_IMAGE BLOB
    MIMETYPE VARCHAR2(255)
    FILENAME VARCHAR2(255
    IMAGE_LAST_UPDATE DATE
    Thanks
    Nisha

    Hi,
    I have created a html (plsql anonymous block) report using table given below.My problem is, picture is not coming in Report. i have tried to implement picture by this link code
    http://apex.oracle.com/pls/otn/f?p=31517:64:7932202481965736. sent by mike to me.
    But when i run (<img src="#OWNER#.my_image_display?p_image_id=:P1_A" />) IMAGE code in html region source
    by using identification type(HTML TEXT),its working well
    but when i run IMAGE CODE(<img src="#OWNER#.my_image_display?p_image_id=:P1_A" />) on html region source as identification type(PLSQL ANONYMOUS BLOCK) its only showing the dot,not actually showing the picture in my html report.please suggest me.my table fields are.
    STUDENT_MOTHER_DETAILS(TABLE NAME)
    F_NAME VARCHAR2(50)
    M_NAME VARCHAR2(50)
    L_NAME VARCHAR2(50)
    DOB DATE
    MOTHER_IMAGE BLOB
    MIMETYPE VARCHAR2(255)
    FILENAME VARCHAR2(255
    IMAGE_LAST_UPDATE DATE
    This is my actual report code.
    DECLARE
    AGE INTEGER;
    rec STUDENT_PERSONAL_DETAILS%rowtype;
    begin
    htp.p('
    <html>
    <body><H8> </H8>
    FOR REC IN (SELECT STUDENT_ID,F_NAME,M_NAME,L_NAME,DOB FROM STUDENT_MOTHER_DETAILS WHERE STUDENT_ID =:P1_A)
    LOOP
    SELECT TO_NUMBER(MONTHS_BETWEEN(SYSDATE,REC.DOB)/12) INTO AGE FROM DUAL;
    htp.p('
    <TABLE width="60%" border=1 align="CENTER">
    <TR>
    <td bgcolor=#BFC7E6>Student ID</td>
    <td bgcolor=#D1D7F0>'||REC.STUDENT_ID||'</td>
    <td rowspan="6" colspan="2" bgcolor=#D1D7F0><center>*<img src="#OWNER#.my_image_display?p_image_id=:P1_A" />*</td>
    </tr>
    <tr>
    <td bgcolor=#BFC7E6>Name</td>
    <td bgcolor=#D1D7F0>'||INITCAP(REC.F_NAME)||','||initcap(rec.M_NAME)||','||INITCAP(REC.L_NAME)||'</td>
    </TR>
    <TR>
    <td bgcolor=#BFC7E6>Date Of Birth</td>
    <td bgcolor=#D1D7F0>'||REC.DOB||'</td></tr>
    end loop;
    htp.p('
    </body>
    </html>');
    end;
    Edited by: Nisha Rani on Sep 25, 2009 10:07 PM
    Edited by: Nisha Rani on Sep 25, 2009 11:33 PM

  • Images not going in email

    I am sending an email in HTML format using Java mail.
    In this I have included an image using
    <img src='c:/clip_image002.jpg'/>
    the mail is going fine usng java mail api
    If I view this email from my system, I am able to view the image (it seems to be picking the local path). but when I open this email on some other system, email does not display.
    Can someone please let me know how to embed the image so that it opens on other system as well.
    Here is my code
    public static void main(String[] args) {
            String to = "[email protected]";
            String from = "[email protected]";
            String host = "127.0.0.1";
            Properties props = new Properties();
            props.put("mail.smtp.host", host);
            props.put("mail.debug", "true");
            Session session = Session.getInstance(props);
            try {
                Transport bus = session.getTransport("smtp");
                bus.connect();
                Message msg = new MimeMessage(session);
                msg.setFrom(new InternetAddress(from));           
                InternetAddress[] address = {new InternetAddress(to)};
                msg.setRecipients(Message.RecipientType.TO, address);
                msg.setSubject("firmation");
                msg.setSentDate(new Date());
                Multipart mp = new MimeMultipart();
                setHTMLContent(msg, mp);
                msg.saveChanges();
                bus.sendMessage(msg, address);
                bus.close();
            catch (MessagingException mex) {
                 mex.printStackTrace();
                    while (mex.getNextException() != null) {
                    Exception ex = mex.getNextException();
                    ex.printStackTrace();
                    if (!(ex instanceof MessagingException)) break;
                    else mex = (MessagingException)ex;
        public static void setHTMLContent(Message msg, Multipart mp) throws MessagingException {
            String html = "<HTML><head><style><!-- @font-face{font-family:Latha;panose-1:2 11 6 4 2 2 2 2 2 4;mso-font-charset:0;mso-generic-font-family:swiss;--></style></head>";
            html = html + "<BODY><p class=MsoNormal><span style='font-size:10.0pt;font-family:\"Verdana\",\"sans-serif\";mso-fareast-font-family:\"Times New Roman\"'>Dear Mr ABC,</span>";
                    html=html+"<img src='c:/clip_image002.jpg'/><br/>";
            html = html + "<br/>Regards<br/>tha<br/><br/></p></font></BODY></HTML>";
            MimeBodyPart p1 = new MimeBodyPart();
            msg.setContent(mp);
            p1.setContent(html, "text/html");
            mp.addBodyPart(p1);
        }

    but you never added the image to the multipart. The image is there as a part of the "html" variable and this "html" variable is set as content. Do I need to do something more as well?
    public static void setHTMLContent(Message msg, Multipart mp) throws MessagingException {
            MimeBodyPart p1 = new MimeBodyPart();
            DataSource fds = new FileDataSource("C:\\images\\clip_image002.jpg");
            p1.setDataHandler(new DataHandler(fds));
            p1.setHeader("Content-ID","<image>");
            String html = "<HTML><head><style><!-- @font-face{font-family:Latha;panose-1:2 11 6 4 2 2 2 2 2 4;mso-font-charset:0;mso-generic-font-family:swiss;--></style></head>";
            html = html + "<BODY><p class=MsoNormal><span style='font-size:10.0pt;font-family:\"Verdana\",\"sans-serif\";mso-fareast-font-family:\"Times New Roman\"'>Dear Mr ABC,</span>";
                    html=html+"<img src=\"cid:image\"><br/>";
            html = html + "<br/>Regards<br/>tha<br/><br/></p></font></BODY></HTML>";
            msg.setContent(mp);
            p1.setContent(html, "text/html");
            mp.addBodyPart(p1);
        }

  • Background image not showing behind text

    At the moment I am using a table as I haven´t yet found
    out how to make the same effect in css. I have a background image
    style="BACKGROUND: url(images/box_bg.gif) repeat-x" in a td which
    for some reason is overridden by the text so the background of the
    text is white not the background image. The webpage where it can be
    seen is
    http://www.britishalliance.com/test.html
    Thanks a lot

    That's b/c you've set the background color:
    .ftforminput {
    BACKGROUND: #ffffff; COLOR: #c03; FONT-FAMILY:
    Verdana,Arial, Helvetica;
    FONT-SIZE: 11px; FONT-WEIGHT: bold
    }Take out the background, you'll be fine."Hydrowizard"
    <[email protected]> wrote in message
    news:ear4i1$5si$[email protected]..
    > At the moment I am using a table as I haven?t yet found
    out how to make
    > the
    > same effect in css. I have a background image
    style="BACKGROUND:
    > url(images/box_bg.gif) repeat-x" in a td which for some
    reason is
    > overridden by
    > the text so the background of the text is white not the
    background image.
    > The
    > webpage where it can be seen is
    http://www.britishalliance.com/test.html
    > Thanks a lot
    >

  • Do not disconnect image not going away

    I recently had my 160g ipod classic returned after having the play button fixed. Upon recieving it I encounted the problem that either we could only get the apple image screen or the do not disconnect (with the crossed circle) screen. When plugging it back into the computer the do not disconnect image would remain, yet the computer was trying to acknowledge it.
    How should I go about fixing this?

    I have had that same problem since beginning.
    When it says Do Not Disconnect... DON't!
    To a restart.
    Lock on, of OK+Menu and hold it!
    You may need to try it again.

  • Receiver mail adapter error -mail not going to other domain users

    in xi this error is coming in mail adapter -
    Message processing failed. Cause: com.sap.aii.af.ra.ms.api.RecoverableException: java.io.IOException: server not responding OK to MAIL FROM;  Domain of sender address XXXat d rate of XX.XX.com does not resolve
    any resolution.upto yday everything was working fine.i crosschecked scot settings they r ok.

    Hii,
    In SXMB_MONI , its showing successful.
    In RWB , its showing error
    Message processing failed. Cause: com.sap.aii.af.ra.ms.api.RecoverableException: java.io.IOException: server not responding OK to MAIL FROM;  Domain of sender address XXXX does not resolve.
    I checked mail id is perfect and settings r ok.
    Pls let me know wat else we can check and rectify it.

  • Applet window goes behind the browser

    Hi Experts,
    Pls suggest me the solution for the problem with applet.
    When I launch the application from browser by providing URL( we are using http server), it launches the application as an Applet . Now my problem is this applet goes behind the browser when I launch this in WindowsXP but when I launch this in Solaris it works fine.
    I want the applet to be shown in front in WinXP as well.
    Can anyone pls suggest solution for this??
    Thanks,
    Joe

    "painting behind" problems generally indicate a mixing of awt and swing components (a definite no-no).
    but this is applet behind browser, not components behind other components,
    so perhaps the problem might be better suited to the applet forum

  • Rotated image overlaps other controls

    Hi, I am working on an AIR app involving images. One of the functionalities is viewing as well as rotating images. I made a simple test app to illustrate this portion:
    <?xml version="1.0" encoding="utf-8"?>
    <mx:WindowedApplication xmlns:mx="http://www.adobe.com/2006/mxml" layout="vertical">
        <mx:Script>
            <![CDATA[
                private function rotate():void
                    var bitmap:Bitmap = Bitmap(img.content);
                    var matrix:Matrix = bitmap.transform.matrix;
                    var centerX:Number = bitmap.width/2;
                    var centerY:Number = bitmap.height/2;
                    matrix.translate(-centerX, -centerY);
                    matrix.rotate(90*Math.PI/180);
                    matrix.translate(centerY, centerX);
                    bitmap.transform.matrix = matrix;
            ]]>
        </mx:Script>
        <mx:Text width="100%" text="Some text"/>
        <mx:Image id="img" width="100%" height="100%" source="test.jpg" horizontalAlign="center" verticalAlign="middle"/>
        <mx:Button label="rotate 90" click="rotate()"/>
    </mx:WindowedApplication>
    The application window has text on the top and a button on the bottom, with the image in the middle. Each click of the button rotates the image by 90 degrees.
    On launch, the app works great. It fetches the image file and fits it to the Image container. As I resize the application, the image also resizes and maintains the position relative to the other controls. Top text and bottom button are where they should be. All good. Let's assume the image is landscape/wide. After I perform the rotate 90 degrees by clicking the button, although the image is rotated and now in portrait orientation, the bottom portion of the image is now out of the image boundary and overlapping the button.
    Is there a way to tell the image to fit the content to the container again? Basically, re-layout the whole thing as if the image is in this new orientation.
    I suppose I can try to figure out a change in scale and resize the image, but I am not sure if this will hold when the user resizes the application. Also, the rotated image is now rather far to the left, as the "top left" corner is where a landscape image would be. For a portait orientation that's centered horizontally, it should be further to the right. I suppose I can also come up with some formula to center the rotated image. It just seems that the application already has all this logic built in, as it did exactly what I wanted when the image was loaded initially. If I can just ask the application to do it again. Note that similar issue occurs if the image starts out in portrait orientation and is rotated to landscape (too far to the right).
    Thanks in advance for the help.
    Will

    Thanks Sheila and Arnis,
    Today I opened the project to try different zoom settings and the problem has vanished; I get the correct arrow at zooms of 100, 120 and 140%.
    Likely a bug somewhere deep in Frame's innards. Anyway we've ordered TCS3 so soon I'll be using FM10. Thanks anyway.
    --- Derek

  • Background-image of a Design Studio 1.3 extension is not displayed when the control is  dragged on the canvas

    Hello,
    I have a Design Studio Extension with a background image which behave well in Design Studio 1.2.
    In Design Studio 1.3 when I drag the control into the canvas the image does not show-up. If I execute the application the image appear in the browser even is not in the canvas.Once I save and reopen the application the image is displayed on the canvas as expected.
    I built an extension based on  the 'Timer' sample which comes with the DS_13_SDK_Samples ( it has a background image) and it behaves the same way - when you drag the control on the canvas, the image is not displayed.
    Any help to solve this issue is much appreciated.
    Thank you.

    It does start to work once I save and reopen or even when I run.
    I tried the inline style but the behavior is much stranger. It does work if I have a full address url to an image, but if my image is part of the control's folder structure it fails completely - it cannot map the right address to the image. The only configuration that appears to work better is the one with the original problem.
    Thank you.

  • Control not going from Adobe Interactive form to ABAP WD Event handler

    Hi
    I am facing an issue with adobe interactive forms and WD ABAP integration.
    The buttons in adobe interactive form when clicked is going round and round and the control is not going to the ABAP code(WD ABAP event handler code whatsoever). I have also set the debugger but the control is not moving to the ABAP code from the adobe interactive form.
    Can anyone help me what can be the issue here and how can I resolve the same?
    Thanks.
    Sid

    Hi Babi,
    In the adobe form layout library Use the Submit(which internally means submit to SAP) button from the Webdynpro Native category.
    Only this button action can connect adobe to web dynpro.
    Whenever we click on this particular button the event will be trigger in the ONsubmit event of interactive form UI element in the webdynpro.There we can write our abap code.Hope this will help you.
    Regards,
    Simi A  M
    Edited by: amsimi on Mar 22, 2011 11:37 AM

  • Control not going to java

    HI..
    I am facing a problem. I am doing validation for fileuploader in java. I am able to do the validation in java. But the requirement is to do the validation in java (page code). When i am passing empty string and do a submit, its working fine i.e the contol is going fine to the page code. But when I give some blank string to the fileuploader field and do a submit. The control is not going to the page code.
    Please help me in the regard. Its very urgent
    Regards
    Rishab

    What is the difference between an empty string and a blank string? And what JSF component are you talking about? Tomahawk t:inputFileUpload? RISB risb:multiFileUpload? Custom component? Why do you need the control in the backing bean? If you want to validate it on being filled or not, generally just add required="true" to the component.

  • My ipad touch screen not,also reseted it. It stops suddenly and goes out of control. Need answer very quickly

    My ipad touch screen not,also reseted it. It stops suddenly and goes out of control. Need answer very quickly???????

    Try doing a reboot by holding both the power and home buttons until the apple logo appears and it restarts, ignoring the red slider if that appears.
    If that does not help, take the iPad to an Apple store genius bar and have the techs check out the screen to see if there is a hardware fault.

  • Anyone know when VZW is going to make GEAR VR available to its customers?? I'm shocked they are so far behind other carriers in this respect

    Anyone know when VZW is going to make GEAR VR available to its customers?? I'm shocked they are so far behind other carriers in this respect

    Wearable Technology: Wearables & Smart Gear | Samsung
    Why not just buy it for $200 there?

  • Photos won't import images from my Canon camera.  When connected, program sees the images, tells me it will import the new ones, then freezes once import starts, not allowing any other operation to happen.  MacbookPro 15" 2012, OSX Yosemite 10.10.3.

    Photos won't import images from my Canon camera.  When connected, program sees the images, tells me it will import the new ones, then freezes once import starts, not allowing any other operation to happen.  MacbookPro 15" 2012, OSX Yosemite 10.10.3.  Any suggestions?

    Solution discovered.  Faulty connector cable.  Tried a different one and it worked.

  • Premiere Elements 13 issue with the mouse on When I select a clip of video and move to a different place in my time line, Premiere Elements 13, will not release the clip rom the mouse.    The clip follows my mouse movements and goes to other places in my

    Premiere Elements 13 issue with the mouse on MAC OSX Yosemite 10.10.1
    When I select a clip of video and move to a different place in my time line, Premiere Elements 13, will not release the clip from the mouse.
    The clip follows my mouse movements and goes to other places in my time line.
    I try to delete these extra insertions, but the mouse will not release the clip.
    Action I’ve taken: I’ve re-installed Premiere Elements 13. Problem remains.
    This issue has consumed too much of my time and does not go away.  It ruins my video.
    Help please.
    Thanks

    I tried using the Guest Account on my Mac. In the Guest Account, Illustrator works perfect!
    Then I started wondering what processes (tools/tweaks) I run by default on my account. Turned out the problem was called by a little background tool called RightZoom. RightZoom let's the green 'zoom' button always maximize your current window.
    So thanks! Problem solved!

Maybe you are looking for