How can i Display images with may own table

Hi
I want display images with my own table. How can I use in this query.
SELECT    '<a href="#" onclick="javascript:'
       || 'getImageHeight(''my_img'
       || '#ROWNUM#'');javascript:redirect'
       || '(''f?p=&APP_ID.:212'
       || ':&SESSION.:DISPLAY:NO::P212_IMAGE_ID:'
       || ID
       || ''');">'
       || '<img src="#IMAGE_PREFIX#edit.gif" '
       || 'alt="Edit"></a>' ID,
          '<img id="my_img'
       || '#ROWNUM#" src="#WORKSPACE_IMAGES#'
       || filename
       || '"/>' image
  FROM wwv_flow_filesThanks
Nr
Edited by: user10966033 on Sep 28, 2009 1:41 PM

You don't use #workspace_images# since that is for STATIC files, not images in a table..
see this thread for help: Re: Display image from blob
Thank you,
Tony Miller
Webster, TX

Similar Messages

  • How can I display images that are not included in any collection?

    How can I display images that are not included in any collection (some filter or smart collection)? A smart collection with parameters "Collection - contains - empty field" does not work. Lightroom 5.

    Thank you! Good idea! I ordered letters of the alphabet (space separated), and it works.

  • How can I display images in drop down.

    Hi All,
    How can I display images in drop down.
    <select><option>image here</option></select>
    please reply soon.
    anser please
    Thanks

    I have not found html forum..That's just incredible.
    where can i find it ?Sorry, I'm still recovering from that remark.
    please reply soonEvery time you end a post with this, or "urgent" or other such keywords, the forum automatically introduces a 5 minute delay so that will actually make the whole process slower (not faster).

  • How can i display image in RTF template when Oracle Apps running in Windows

    Can any body help how can i display image in RTF template when oracle apps running in Windows Server.
    Thanks
    Ravi

    Hi Ravi,
    You can add images into your rtf template using MS Word Insert Picture feature.
    Did you try this method?
    Thanks
    Ravi
    [email protected]

  • In iPhoto, how can I export images with the metadata - including the title and caption information - intact as part of the image?

    In iPhoto, how can I export images with the metadata — including the title and caption information — intact as part of the image?

    Check those boxes in the export dialogue - Exporting From iPhoto
    LN

  • How can I display images in tables?

    My images that I have put into tables in my iBook are visible in iBooks Author. However, when I preview it on my iPad, I cannot see the images in the tables. Any ideas anyone?

    Are you sure the images are embedded in the table and not just sitting on top? You can test by nudging the table slightly to see if the image/s move with the table. Also in the Inspector, an image in a selected table cell will show in Inspector as a background to that cell.
    I haven't tested whether the image in the background of the table cell will actually display in the previewed iBook but am interested in the result that you get. I found that the only way I could get an image into a table cell was by copying it to the clipboard and then selecting the cell and pasting. I also found that none of the sizing options in Inspector worked and that the image shrank to fit the cell and was centred in it by default.

  • How can i display image in mx:TextArea Component?

    I found display img tag in htmlText of mx:TextArea component
    is very difficult in Flex Air
    I new a simple air project in flex builder, put the code
    below in it, i put a glad.png file in the src folder, every thing
    is OK, when i run it, image cannot be displayed. why this happend,
    I search the google for the solution, it seems there is a bug in
    air, and told me to use mx:HTML coponent, but that component still
    can not display img tag.
    could any one help me with this?
    <mx:TextArea width="100%" height="100%">
    <mx:htmlText>
    <![CDATA[
    <a href='
    http://www.adobe.com'><img
    src='glad.png'/></a>Click the image to go to the Adobe
    home page.
    ]]>
    </mx:htmlText>
    </mx:TextArea>

    I ran into a similar problem and wasn't able to find a way to have regular Flex components (like Text and TextArea) display <img> tags in their htmlText.  Everything works find in a web-based Flex application, but once the same code was used in AIR, the images just wouldn't display.
    I changed my display to use the mx:HTML component and everything worked fine (I was using only external images).

  • How to store/display images with SQL Server 2000

    Hi everybody, I'm totally new to ColdFusion, and creating a
    sample project, where a user would enter in a person's info and
    upload a picture of that person. I trying to get my app to save
    that image to SQL Server database and then to display that pic.
    Currently, it "seems" that I'm able to save to SQL server (my table
    saves user info but all values in my photo column says
    <binary>-I don't know if that is correct), but I can't seem
    to get image and display it on my cf page. I have pasted portions
    of my code below.
    I've been hammering away at this but no luck, so Any comments
    are very well appreciated, example code would be great!
    Thank you so much,
    noijet
    # 1.) I have a 'User Info Entry' page that submits to page
    #2:
    <cfform...>
    <input name="fileToUpload" id="fileToUpload" type="file"
    size="64"/>
    </cfform>
    # 2.) This page does the actual saving, this doesn't output
    any errors but am I saving the image to SQL server correctly? I
    have no idea really how to save images to database, so please
    advise or possibly provide example code. Afterwards, it goes to
    page #3 to display confirmation page that data has been saved.
    <cfif isDefined("Form.fileToUpload") and Form.fileToUpload
    neq "">
    <cfset uploadPath =
    GetDirectoryFromPath(GetBaseTemplatePath()) & "uploads\">
    <cfif not DirectoryExists(uploadPath)>
    <cfdirectory action="create" directory="#uploadPath#">
    </cfif>
    <cffile action="upload" fileField="fileToUpload"
    destination="#uploadPath#" nameConflict="overwrite">
    <cfset imagefile= "uploads\\" & cffile.serverFile
    & "'">
    </cfif>
    <cfquery name="qInsertPerson" dataSource="HRP">
    Execute insertPerson
    N'#Trim(FORM.sLastname)#',N'#Trim(FORM.sFirstname)#',N'#Trim(FORM.sMiddle)#',N'#Trim(FORM .sAlias)#',
    '#imagefile#'
    </cfquery>
    <cflocation url = "savePersonResult.cfm" addToken =
    "No">
    #3.) This confirmation page displays last user entered and a
    picture of the user. The user info retrieved from SQL server is
    displaying correctly but the picture is not displaying(just a small
    red 'x' box). The image calls another getPersonPhoto.cfm file to
    display image.
    <cfquery name="lastPerson" datasource="HRP">
    Exec getLastRow
    </cfquery>
    <cfoutput query="lastPerson">
    #firstName# #middle# #lastName# was added to our Persons
    list. That Person has been given id: #id# <br>
    Thank you for your assistance and cooperation.
    <img src="getPersonPhoto.cfm?id=71" border="0" width="128"
    height="180">
    </cfoutput>
    #4.) This is .cfm file that only displays image of person
    <cfsetting enablecfoutputonly="Yes">
    <cfsetting showdebugoutput="No">
    <cfquery name="getBlob" datasource="HRP">
    SELECT TOP 1 photo FROM Persons WHERE id = 71
    </cfquery>
    <cfheader name="content-disposition"
    value="Inline;filename=ExamplePerson.jpg">
    <cfcontent type="image/jpeg; charset=iso-8859-1">
    <cfoutput>#tostring(tobinary(getBlob.photo))#</cfoutput>
    Note: In my ColdFusion admin, I checked "Enable ... BLOB's"
    and set Blob Buffer to 20000

    Regarding doing the actual saving, here are some other things
    to consider:
    * a max on the image's file size
    * check if it really is an image
    * don't use nameconflict="overwrite". consider
    nameconflict="MAKEUNIQUE"
    * delete uploaded image on file system after insert into db
    Also, on the cfm page that returns an image, try putting the
    cfcontent tag and the cfoutput tag on one line.
    <cfheader name="Content-Type" value="image/jpeg">
    <cfcontent
    type="image/jpeg"><cfoutput>#getBlob.photo#</cfoutput>
    Good luck!

  • How can I display favorites products list as table?

    When I insert favorites list module on a page,
    {module_favorites,i,27,0}
    it renders them as <li> (one per row).  I want them to render as the product list. (Several products per row).
    {tag_productlist,3,,6,alphabetical,true,false}
    How can I do this?
    Also, if I want to insert all products with a certain tag in a page (that is not the Catalog page), It renders as list, not as table.  This is the module I called: {module_productfeaturelist,store,4,Default,,true}

    No - I still can't make it work. Tried a lot of different things but it's like theres only one LI in the list, containing all the items added to the fauvorite list.
    I tried to remove the classes, and this is how it looked in Firebug:
    <div id="favourites">
    <ul>
    <li id="catProdTd_5244310">
    <link type="text/css" rel="stylesheet" href="/css/style.css">
    <div class="hproduct">
    <link type="text/css" rel="stylesheet" href="/css/style.css">
    <div class="hproduct"> <link type="text/css" rel="stylesheet" href="/css/style.css">
    <div class="hproduct">
      <link type="text/css" rel="stylesheet" href="/css/style.css">
    <div class="hproduct">
    </li>
    </ul>
    </div>
    I don't know how to target the LI's inside the module?

  • How can I display Photograph with GUI

    I want to display a picture when a button is clicked on. BinTallOne is the button. Compiler can't resolve symbol, symbol being getImage(). Is there a method I could use to get a jpg file and display it? ActionListener has been implemented and added to button.Thanks Toshi1
    code:
    public void actionPerformed(ActionEvent ae) {
    String label = ae.getActionCommand();
    if (label.equals("BinTallOne")) {
    BinTallOne = getImage("MePic.JPG");

    You can do the following:
    get the Graphics object of the container where you want your photo displayed, and the call it's drawImage() method.
    Let's say you have:
    Panel myPanel = new Panel ();
    Graphics g = myPanel.getGraphics();
    g.drawImage (BinTallOne, x, y, myPanel);where x and y represent the size of your image. Don't forget that in order to display the image the panel (myPanel) must be added to your Frame, Applet or whatever you're using.
    Good luck,
    Calin

  • How can i displayed image in titlewindow?

    Hi,
    i one one.mxml.It contain one text field and preview button is present.The text field contains the image path.
    My question is wen i clicked on the preview button the image will be didplayed on titlewindow(two.mxml).
    i have written logic for how to crete title window in preview button handler.i have written image tag in
    two.mxml.
    Regards
    D.Mahesh babu

    you can set image path for pop-up window as
    titleWindowInstance .imageId.source = textInput.text;
    & then PopUpManager.centerPopUp( titleWindowInstance );

  • How can I display pictures with an odd size in Aperture 3.0

    My camera : Leica Digilux 3 (supported). I use to shoot in Raw format and the regular size for these pictures is 3148*2350 (7,4 MP = 14,34 Mo). I have no problem with them. Some times I take pictures in panoramic format, also Raw 3148*1762 (5,5MP = 10,78 Mo), they appear in the library, but when I click on them to view and edit them they appear about 1 second in the viewer, and disappear letting an empty viewer or displaying the previous regular picture viewed, without no error message. If I control-click one one of these panoramic picture, it appears in the viewer as long as I maintain the click and disappear when I release. I don't encounter this problem in LR (dare I say it)
    Thank you for your help

    My camera : Leica Digilux 3 (supported). I use to shoot in Raw format and the regular size for these pictures is 3148*2350 (7,4 MP = 14,34 Mo). I have no problem with them. Some times I take pictures in panoramic format, also Raw 3148*1762 (5,5MP = 10,78 Mo), they appear in the library, but when I click on them to view and edit them they appear about 1 second in the viewer, and disappear letting an empty viewer or displaying the previous regular picture viewed, without no error message. If I control-click one one of these panoramic picture, it appears in the viewer as long as I maintain the click and disappear when I release. I don't encounter this problem in LR (dare I say it)
    Thank you for your help

  • How can i display the values in a table when i press enter

    hi,
    I have three text boxes and a table with three columns in a jsp page.When i keyin some values in the text boxes and press Enter these values should be dispalyed in the three columns of the table.When once again if i key in the text boxes with some other values these values should also be displayed in the table columns in another row.Can it be done.Pls help me.Hoping for a reply.
    Thanks
    Naveen

    hi
    just go through the Code below:
    this helps you but this works in IE only.
    <html>
    <head>
    <script language="javascript">
    <!--
         function show(frm) {
              Show.innerText = frm.desc.value;
         } // closing the function show()
    //-->
    </script>
    </head>
    <form name="testform">
    <textarea name="desc" rows="3" cols="20"></textarea>
    <input type="button" name="buttsub" value="Submit" onClick="javascript:show(this.form)">
    <br>
    <table width="500">
    <tr><td bgcolor="#e6e6e6">
    <div id="Show"> </div>
    </td>
    </tr>
    </table>
    </form>
    </html>
    Cheers
    rambee

  • How can I display a ViewObject in 'vertical' table? (11g)

    In our application we have a need to display data that comes from a ViewObject in a 'vertical' table, rather than the standard horizontal layout the <af:table> displays.
    For example, suppose the ViewObject has 3 attributes -- Attr1, Attr2 and Attr3.
    Rather than displaying bound viewObject data in columns that run horizontally such as this:
    (Row1)      Attr1 | Attr2 | Attr3
    (Row2)      Attr1 | Attr2 | Attr3
    (Row3)      Attr1 | Attr2 | Attr3
    ...I we want to display:
    (Row1)
    Attr1
    Attr2
    Attr3
    (Row2)
    Attr1
    Attr2
    Attr3
    (Row3)
    Attr1
    Attr2
    Attr3
    ...Is it possible to achieve this using the af:table tag and monkeying with the css styles or is there another tag suited for this such as the forEach tag?
    Does anyone have experience with this? Thanks in advance

    Well, you can use just one <af:column, and put all the attributes under it... can even try using some grouplayout -vertical..
    <af:table value="#{bindings.Something.collectionModel}"   var="row">
       <af:column>
          <af:panelGroupLayout layout="vertical">
             <af:activeOutputText value="#{row.bindings.column1.inputValue}" id="aot1"/>
             <af:activeOutputText value="#{row.bindings.column2.inputValue}" id="aot2"/>
             <af:activeOutputText value="#{row.bindings.column3.inputValue}" id="aot3"/>
          </af:panelGroupLayout>
       </af:column>
    </af:table>                   Should definitely work
    Julian

  • How can I Display a Image with tiff format in Jpanel?

    How can I Display a CMYK Image with tiff format in Jpanel ? Not in ScrollingImagePanel? Thank you in advance.

    Why nobody can help me?I am very anxious!help me,please!

Maybe you are looking for

  • All songs deleted on iPod mini but they are all still on iTunes

    For some wierd reason all my songs were deleted from my iPod mini when I deleted one playlist. Now I can't update my iPod, because iTunes says that all of the playlists selected no longer exist. Should I restore my iPod mini? I'm scared. Please help

  • Nike+  website is temp. unavailable

    I've been having problem synching my workout runs for close to 2 weeks now, I've contacted support twice and was still not able to resolve the issue. In reading post I discovered that the recorded workout XML file could be bad, and sure enough it was

  • What is the use of Webcat,What is its role in obiee 10.1.3.3.4

    Hi , I m new to OBIEE and I want to know more about Webcat.Could somebody explain in detail about webcat and its role in obiee.Thanks in advance.

  • Fetching filenames from a directory and adding to vector

    Hi all, I am seeking your help to implement a certain logic. I have a root directory. This directory contains hundreds of folders, subfolders and files. I have a method(getChildren(pathname)) by which I get the children names corresponding to each di

  • Re: jsp:destroy called on undeploying application

    You may want to try precompiling the jsps. Try adding the lines below in weblogic.xml: <jsp-param> <param-name>precompile</param-name>           <param-value>true</param-value> </jsp-param> "Jose K" <[email protected]> wrote: > Hi all, Each time I un