Why image attribute of h:command_button is not context relative?

I think It should be. Otherwise, the same page might show the picture or lost it depends of current URL in the address string of browser window.
P.S. The 'value' attribute of h:graphic_image works very intelligent. It will be great if 'image' attribute of h:command_button will work the same way.

Any ideas out there on why this inconsistency exists? This is a Bad Thing---we shouldn't have to remember which attributes are context-relative and which are absolute. They should all be context-relative.
Quoting Mann, JSF in Action (325): "[T]he image property isn't automatically prefixed with the context path (as it is for HtmlGraphicImage). This is a feature that we hope will be added in a future version of JSF. In the meantime, you can either use a value-binding expression or use an HtmlCommandLink instead."
So is this a specification inconsistency, or an RI bug?
Garret

Similar Messages

  • Every time I right-click an image in Firefox 3.6.12 to view image size info it says "Unknown (not cached)". Any ideas on why this could be happening and how I can stop it? My OS is Ubuntu 10.10. If you need any more info let me know.

    Every time I right-click an image in Firefox 3.6.12 to view image size info it says "Unknown (not cached)". Any ideas on why this could be happening and how I can stop it? My OS is Ubuntu 10.10. If you need any more info let me know.

    Is the disk cache and the memory cache enabled?
    You can check these prefs on the about:config page.
    * http://kb.mozillazine.org/browser.cache.disk.enable
    * http://kb.mozillazine.org/browser.cache.memory.enable
    To open the <i>about:config</i> page, type <b>about:config</b> in the location (address) bar and press the "<i>Enter</i>" key, just like you type the url of a website to open a website.<br />
    If you see a warning then you can confirm that you want to access that page.<br />
    Your More system details list shows two outdated Flash plugins that you should remove and update to Flash 10.1 r102 or at least remove 10.0 r45 and wait until your distribution offers a 10.1 r102 update.
    # Shockwave Flash 10.0 r45
    # Shockwave Flash 10.1 r85
    Update the [[Managing the Flash plugin|Flash]] plugin to the latest version.
    *http://www.adobe.com/software/flash/about/

  • Why my image acquisition pci 1409 board could not be detected by matlab image acquisition toolbox?

    i have a National Instruments PCI-1409 image acquisition board that works very well
    with the software provided by National Instruments, whereas it could
    not be detected by matlab image acquisition toolbox when the command
    "imaqhwinfo" was executed. I don't know why. the system is XP and
    DirectX9.
    any of your advice will be greatly appreciated.
    thanks
    yours sincerely
    Jing
    [email protected]

    Is your matlab image acquisition toolbox DirectX based? If so, NI frame grabber will not work for your matlab image acquisition toolbox because it does not provide WDM or VFW drivers.
    Irene He
    [email protected]
    www.hytekautomation.com

  • Problems for retrieving image attributes

    Hi,
    I am a new user for Oracle interMedia and i have following problem.
    I have wroten ein java programm to retrieve the image properties. At First, the images (jpg, tif) are stored as BLOB in the table, then i use the function setProperties() to set the image attributes.
    PreparedStatement pstmt = con.prepareStatement("INSERT INTO btable VALUES(?, ORDSYS.ORDImage.init())");
    for (int ef=1; ef<=anzahl_summe; ef++){
    pstmt.setInt(1, ef);
    pstmt.execute();
    OracleResultSet rs = (OracleResultSet)stmt.executeQuery("SELECT * FROM btable WHERE bid = " + ef + " FOR UPDATE");
    while(rs.next()) {
    OrdImage imgObj = (OrdImage)rs.getCustomDatum(2, OrdImage.getFactory());
    imgObj.loadDataFromFile(f_location[ef]);
    imgObj.setProperties();
    OraclePreparedStatement orpstmt = (OraclePreparedStatement)con.prepareStatement("UPDATE btable SET bild = ? WHERE bid =" + ef);
    orpstmt.setCustomDatum(1,imgObj);
    orpstmt.execute();
    orpstmt.close();
    Now if i use the functions getHeight(), getFormat(), ... for querying the properties, i will get just only the values for the image height, width and size. The other attribute values i get either null or ???. I don't understand why. The Bildforamte(jpg, tif)are supported by Oracle.
    Can you tell me what shall i do?
    thank you very much and greeting from germany
    rabbit

    Hi larry,
    thank you for your help. I have set autocommit off and commit in the end of the programm. I think, that is not a problem.
    I use the following table:
    CREATE TABLE bildtable_intern(bild_id int PRIMARY KEY not null, bild ORDSYS.ORDImage)
    My java programm:
    public class OracleBild_intern {
    public Connection connect() throws Exception{
    //thin driver is used
    conn.setAutoCommit(false);
    public void bildmessung(Connection con) throws Exception{
    PreparedStatement pstmt = con.prepareStatement("INSERT INTO bildtable_intern VALUES(?, ORDSYS.ORDImage.init())");
    for (int ef=1; ef<=10; ef++){
    pstmt.setInt(1, ef);
    pstmt.execute();
    OracleResultSet rs = (OracleResultSet)stmt.executeQuery("SELECT * FROM bildtable_intern WHERE bild_id = " + ef + " FOR UPDATE");
    while(rs.next()) {
    OrdImage imgObj = (OrdImage)rs.getCustomDatum(2, OrdImage.getFactory());
    //I have also tried to use loadDataFromInputStream() and loadDataFromByteArray()
    imgObj.loadDataFromFile(f_location[ef]);
    imgObj.setProperties();
    OraclePreparedStatement orpstmt = (OraclePreparedStatement)con.prepareStatement("UPDATE bildtable_intern SET bild = ? WHERE bild_id =" + ef);
    orpstmt.setCustomDatum(1,imgObj);
    orpstmt.execute();
    orpstmt.close();
    pstmt.close();
    retrieveattr(con);
    public long retrieveattr(Connection con) throws Exception{
    OracleResultSet rs = (OracleResultSet)stmt.executeQuery("SELECT * FROM bildtable_intern");
    while (rs.next()){
    OrdImage imgObj = (OrdImage)rs.getCustomDatum(2, OrdImage.getFactory());
    System.out.println("bild_id = " + rs.getInt(1));     
    System.out.println("bild_height = " + imgObj.getHeight());
    System.out.println("bild_width = " + imgObj.getWidth());
    System.out.println("bild_size = " + imgObj.getContentLength());
    System.out.println("bild_format = " + imgObj.getFormat());
    System.out.println("contentformat = " + imgObj.getContentFormat());
    System.out.println("compressionformat = " + imgObj.getCompressionFormat());
    System.out.println("mimetyp = " + imgObj.getMimeType());
    public static void main(String[] args) throws Exception{
    //call the methode connect()
    con.commit();
    con.close();
    I try again, but i get always only the values for image height, width and contentlength. Can you tell me, what ist wrong with this programm?
    Thank you very much and greeting aus germany!
    rabbit

  • BUG?: preceding slash in h:commandButton image attribute

    Hi,
    when I'm creating a <h:commandButton> and add an image to it, I always have the same 'problem' when I use the intellisense on completing the image attribute. It happens in the Studio Edition Version 10.1.3.0.4.
    If I enter <h:commandButton image="mslast.gif"> or pick this image from the list in the property inspector, the attribute will always change to "/mslast.gif".
    If I would then run the .jsp pages, the images are not displayed. They will only be displayed if I manually correct the attribute by deleting the preceding slash.
    Just for the record, the images and the .jspx files are in the same folder at the same level.
    kind regards

    I think you cannot do that. Is that possible in simple Html? Why don't you wrtie on the image the value?

  • Can anyone help me as to why my raw files in bridge are not showing as thumbnails as they normally do . I can seem to fix it

    Can anyone help me as to why my raw files in bridge are not showing as thumbnails as they normally do . I can seem to fix it

    BOILERPLATE TEXT:
    Note that this is boilerplate text.
    If you give complete and detailed information about your setup and the issue at hand,
    such as your platform (Mac or Win),
    exact versions of your OS, of Photoshop (not just "CS6", but something like CS6v.13.0.6) and of Bridge,
    your settings in Photoshop > Preference > Performance
    the type of file you were working on,
    machine specs, such as total installed RAM, scratch file HDs, total available HD space, video card specs, including total VRAM installed,
    what troubleshooting steps you have taken so far,
    what error message(s) you receive,
    if having issues opening raw files also the exact camera make and model that generated them,
    if you're having printing issues, indicate the exact make and model of your printer, paper size, image dimensions in pixels (so many pixels wide by so many pixels high). if going through a RIP, specify that too.
    A screen shot of your settings or of the image could be very helpful too,
    etc.,
    someone may be able to help you (not necessarily this poster, who is not a Windows user).
    Please read this FAQ for advice on how to ask your questions correctly for quicker and better answers:
    http://forums.adobe.com/thread/419981?tstart=0
    Thanks!

  • Random Vectors/images color inverted in print, but not in PDF. Where does the fault lie?

    Sent a PDF to the newspaper printer and some of the images had inverted/strange colors. However...
    In one case I had duplicate images of a pink vector flower. SOME of the flowers were inverted, to a dark blue/black, and some were fine(pink). These were embedded vectors.
    In other instances vectors, went from orange to blue/black, pink to blue/black, and yellow/white to blue black. I specify because in one vector image, a ring, the ring was yellow, but the diamond was white, and it all changed to the same blue/black in print.
    Finally, there were two greyscale Tiff photographs of a pair of ladies. These are not embedded, and have not been altered at all and since the last time this paper has been printed, (which printed fine). This time, they were inverted. Nothing else on the page was inverted.
    As far as I can tell, there is not a separation issue, and I have saved the file from InDesign CC to pdf using the same settings as dozens of times before. The pdf on my end looks fine. The printer says they just print what they receive, but as far as I can tell, there is no issue on our end. The fact that some duplicated images printed fine, and others did not seem to confirm this. Everything is properly linked. Has anyone else experienced this problem? Is this a pdf, InDesign, or even an adobe problem at all, or it is something on their end? I have heard of inverted colors before, but can't find a solution (especially as I can't even see the problem on my end.)
    Using Windows 8, up-to-date InDesign CC, and Acrobat Pro, Illustrator CS6 ver.16.2.0 64bit
    I have no idea what the printer uses.

    Where does the fault lie? - in an environment where they (the newsprinter) collect up front, have no responsibility for quality and arrogantly believe, perhaps correctly, that you'll be back with another paying job in the future.
    Check the file you sent via Acrobat Preflight or Output Preview for RGB elements.
    Check the file you sent via Acrobat Preflight - Checks - For Transparency Used
    Do any of these elements off color involve rgb or interact (with or near) any transparency?
    (InDesign could show these attributes via the links panel or a Live Preflight. Both can be (probably should be in your case) changed via the PDF Export)

  • Workflow problems: Import selection, 9 keywords in list?, Exporting image attributes...

    I have a few problems incorporating Lightroom into my work flow.
    Is there a way to:
    Select recursive directories when importing photos from disk without
    a copy. Currently, I can only choose files directory(folder) by
    directory.
    Get more than 9 keywords in a shortcut list.
    Add photos from a previously accessed CF card to a catalog in a short
    time.
    Currently it takes about the same time as loading a card from scratch.
    Export image attributes to text file
    (filename followed by keywords, rating...)
    Basic principles of my work flow:
    1. Flash card is used until contents roughly matches the archive media
    size.
    This means a 1GB card fills to 700MB after deleting rejects, and
    a 4GB card will easily fit on a DVD.
    2. Photos on card are categorized and rated/rejected/deleted one or more
    more times while the card is being filled. This results in:
    -Copies of retained images to the categorized directory structure on the
    computer.
    -Rejects deleted from card, and not appearing on the computer
    -Category, and rating information for each image in an easily parsed
    list.
    3. Post processing is done and printing is done on highest rated images
    in each category.
    For example:
    Day 1: start with a blank 4GB CF card, and shoot 1.5GB for customers A and
    B.
    Customer A has 8 subjects a,b,c,d,e,f,g,h; Customer B has 12
    subjects
    a,g,i,j,k,l,m,n,o,p,q,r. Note that some names for customers A and B
    are the same. That night, I delete rejects off the card down to
    800MB,
    and copy the saved images to the directory structure corresponding
    to each customer on the computer. Then a list is printed out to show
    an image+rating list for each subject. Notes are made for each
    "weak"
    subject, so I know who to focus on in the next day of shooting.
    Note I may have needed to do some minor post processing to determine
    rejects and rating.
    Day 2: I shoot 9 subjects for customer A: a,b,c,d,e,f,g,h,s, and 12
    subjects for customer C: j,m,q,t,u,v,w,x,y,z,aa,bb. Similar culling,
    sorting, and copying is done to Day 1.
    Day N: CF card is full, so contents is written to a DVD, then card is
    erased.
    Day M: Sufficient counts of good images are obtained for Customer A, so
    Final post processing is done, and prints are made.
    My initial experimenting with Lightroom shows it has potential to streamline
    the above work flow, but a few key hurdles have kept me from implementing
    it. I have made some assumptions about the tool in the following description,
    so the best help for me would first to point out what assumptions are incorrect
    It looks like "import from device..." only allows a copy from the CF card.
    A copy would mean once images were rejected in the catalog, it would be
    out of sync. with the CF card. So "import photos from disk..." looks
    to be the only way to accomplish principle 1 above. *[minor problem a]* I saw
    no way to import the information from the CF cart recursively in this
    mode. I had to choose the files in groups one directory (folder) at
    a time. When I imported from device, I could grab the whole CF card,
    even though it did a copy. Note another reason I can't copy the CF card
    to the catalog is that the reject/delete operation would not free-up any
    CF card space for the next shoot.
    Rejecting, rating, and categorizing (with keywords) worked easily with
    Lightroom, but *[minor problem b]* it appears the keyword shortcut list is
    limited to 9 entries. Given customers can have more than 9 subjects,
    it would be useful if this could be expanded, even if I implement some sort
    of keyword hierarchy. I suspect the camera will complain about a bad file
    format if I change any of the files on the CF card, but it looks like
    the sidecar files on the computer disk allows me to "modify" images so
    I can get a correct rating without actu

    Do you mean by batches, or the occasional one-off look see? <br /><br />is this following useful? If so, I can tell you how to get it. <br /><br /><tiff:Orientation>1</tiff:Orientation><br />   <tiff:YCbCrPositioning>1</tiff:YCbCrPositioning><br />   <tiff:XResolution>1800000/10000</tiff:XResolution><br />   <tiff:YResolution>1800000/10000</tiff:YResolution><br />   <tiff:ResolutionUnit>2</tiff:ResolutionUnit><br />   <tiff:Make>Canon</tiff:Make><br />   <tiff:Model>Canon PowerShot S80</tiff:Model><br />   <tiff:ImageWidth>3264</tiff:ImageWidth><br />   <tiff:ImageLength>2448</tiff:ImageLength><br />  </rdf:Description><br />  <rdf:Description rdf:about=""<br />    xmlns:xap="http://ns.adobe.com/xap/1.0/"><br />   <xap:ModifyDate>2008-01-04T15:31:04-08:00</xap:ModifyDate><br />   <xap:CreateDate>2007-10-12T19:37:52-07:00</xap:CreateDate><br />   <xap:MetadataDate>2008-01-04T15:31:04-08:00</xap:MetadataDate><br />   <xap:CreatorTool>Adobe Photoshop CS3 Macintosh</xap:CreatorTool><br />  </rdf:Description><br />  <rdf:Description rdf:about=""<br />    xmlns:exif="http://ns.adobe.com/exif/1.0/"><br />   <exif:ExifVersion>0220</exif:ExifVersion><br />   <exif:FlashpixVersion>0100</exif:FlashpixVersion><br />   <exif:ColorSpace>1</exif:ColorSpace><br />   <exif:CompressedBitsPerPixel>5/1</exif:CompressedBitsPerPixel><br />   <exif:PixelXDimension>3264</exif:PixelXDimension><br />   <exif:PixelYDimension>2448</exif:PixelYDimension><br />   <exif:DateTimeOriginal>2007-10-12T19:37:52-07:00</exif:DateTimeOriginal><br />   <exif:DateTimeDigitized>2007-10-12T19:37:52-07:00</exif:DateTimeDigitized><br />   <exif:ExposureTime>1/400</exif:ExposureTime><br />   <exif:FNumber>8/1</exif:FNumber><br />   <exif:ShutterSpeedValue>8643856/1000000</exif:ShutterSpeedValue><br />   <exif:ApertureValue>6/1</exif:ApertureValue><br />   <exif:ExposureBiasValue>0/3</exif:ExposureBiasValue><br />   <exif:MaxApertureValue>116/32</exif:MaxApertureValue><br />   <exif:MeteringMode>5</exif:MeteringMode><br />   <exif:FocalLength>8564/1000</exif:FocalLength><br />   <exif:FocalPlaneXResolution>3264000/286</exif:FocalPlaneXResolution><br />   <exif:FocalPlaneYResolution>2448000/214</exif:FocalPlaneYResolution><br />   <exif:FocalPlaneResolutionUnit>2</exif:FocalPlaneResolutionUnit><br />   <exif:SensingMethod>2</exif:SensingMethod><br />   <exif:FileSource>3</exif:FileSource><br />   <exif:CustomRendered>0</exif:CustomRendered><br />   <exif:ExposureMode>1</exif:ExposureMode><br />   <exif:WhiteBalance>1</exif:WhiteBalance><br />   <exif:DigitalZoomRatio>3264/3264</exif:DigitalZoomRatio><br />   <exif:SceneCaptureType>0</exif:SceneCaptureType><br />   <exif:Flash rdf:parseType="Resource"><br />    <exif:Fired>False</exif:Fired><br />    <exif:Return>0</exif:Return><br />    <exif:Mode>2</exif:Mode>

  • Why are icons in mail tool bar not in color

    why are icons in mail tool bar not in color and iphoto also

    iVmichael wrote:
    Monochromatic, Orwellian Dullness everywhere, totally hate the look it's a step backwards not forwards. It's absolute b****cks to say this is being 'more inclusive' when it turns so many people OFF!
    Have you done a sampling of all users, or only those users that don't like it? While I don't mind it, I don't think I even noticed it at first until someone pointed it out.
    I note that if you get Info on an item the icon is still colour so this is some OS level (we know best) overaly that's turning everything bland and boring, it would be nice if Apple let the user actually chose this rather than force it upon them ... just like Microsoft I'm sad to say.
    Microsoft? The '90s are over. But regardless of what decade you are living in, Apple has never been too big on end-user customization of the operating system. Apple has always discouraged the use of "themes" whereas Microsoft will allow people to do pretty much whatever they want.
    The file system icons are still the same as they have always been. The new monochrome icons are clearly a design trend more than any change to the underlying operating system. If you turn off the expanded view in any file save dialog (other than in Safari), you can still see the old, glorious, multicoloured icons. If you really wanted to, I'm sure you could change the system-level images and make Finder and Mail look just like they used to.

  • Why is the background of my site not wide enough on a tablet?

    I am testing the website I made on this url: http://www.beautysalon-piurity.nl/test/index3.html
    unfortunately when I view it on a tablet the background (which is a gradient white to green from top to bottom)  stops to soon at the right side, you can see this at the bottom
    I wonder why this happens?

    Your code is not correctly expressed.  CSS gradients are not background-image.  They are simply background:
    http://www.colorzilla.com/gradient-editor/
    Nancy O.

  • Can I parameterise image attributes?

    I am displaying an image in my BI Publisher report, sourcing it from a blob.
    <xsl:if test="not(FILENAME='')">
      <fo:instream-foreign-object content-type="image/gif" height="5cm" width="5cm">
        <xsl:value-of select="LOGO_IMAGE"/>
      </fo:instream-foreign-object>
    </xsl:if>It works fine, until some of the images get larger heights or widths - I haven't figured out the relation yet, but I thought if I could parameterise the height and width properties, perhaps I could make the report happier.
    Is there a way to pass XML values into these fields, such as something like
    <xsl:if test="not(FILENAME='')">
      <fo:instream-foreign-object content-type="image/gif" height="SQL_HEIGHT" width="SQL_WIDTH">
        <xsl:value-of select="LOGO_IMAGE"/>
      </fo:instream-foreign-object>
    </xsl:if>Which doesn't work, but I thought there might be a way if I got the syntax right...
    Thanks.
    Scott

    I haven't successfully parameterised either those image attribute fields, or the usage of
    <fo:external-graphic src="http://my_url:7021/i/loadingAnimation.gif"/> In efforts to do something constructive I tried to parameterise the external-graphic reference instead - since I can't seem to generate anything larger than 32kb worth of XML.
    I tried variations of the following, with no success
    <?IMAGE_URL?> -- displays the url text
    <fo:external-graphic src="?IMAGE_URL?"> -- displays nothing
    <fo:external-graphic src="IMAGE_URL"> -- displays nothing
    <fo:external-graphic src=?IMAGE_URL?> -- displays nothing
    <fo:instream-foreign-object content-type="image/gif">
    <xsl:value-of select="IMAGE_URL"/>
    </fo:instream-foreign-object> -- displays nothing, but did expand area consumed
    Is there syntax I should be using instead, or is this not possible?
    Cheers.

  • Images modified in PSE 6 (Mac) not viewable of TV

    I have transferred JPEG images from my digital camera to my computer (Mac Intel Mini, OSX 10.5), and have modified some of them in PSE 6. Now I want to view all of them, both the modified and the un-modified ones, on my TV, by playing them through my Panasonic personal video recorder. I tried first to transfer the image files to an SD card (my PVR accepts these), but when I inserted the card, the PVR could only display the unmodified images on the TV. The images modified by PSE6 produce a blank screen with the words Cannot be Shown on this Unit. I then tried burning the same images onto a DVD and playing them in the PVR; the same thing happened. Is PSE modifying these JPEGs so that they can't be viewed on a TV? If so, is there some way to correct this?

    Barbara,
    Thanks for the information about the SD card. But as for the DVD I created, it WAS done in PSE6 -- through the Burn DVD command in Bridge, which I assume is there expressly to provide a way of burning JPEGs onto a DVD. The DVD that resulted did display correctly on my TV -- but as I said, only for the images straight out of the camera, not the ones modified in PSE6. I will try using iDVD, but I'm not clear why the result would be any different.

  • Why maxActive Attribute(Context Path) is needed

    why maxActive Attribute(Context Path) is needed if singleton pattern database connection is used?
         maxActive attribute corresponds to maximum number of DB connection in pool. but using singleton pattern only one instance of DB connection will be available to the application at a time , so what is the use of maxActive tag. i know i am wrong at this one . please help me out on use of maxActive in Singleton pattern application
         thank you
         siva

    hi ravi,
    up to my knowledge, activation is enough if no aggregates are manitained.
    refer the following text.
    Activating Master Data and Texts
    Prerequisites
    Master data and texts have already been loaded into the BI system using the scheduler.
    Procedure
    Activating Master Data
    When you update master data from an SAP system the master data is imported in an inactive state. You must activate the new master data so that it can be accessed and used for reporting purposes.
    For more information, see Versioning Master Data.
    Choose the path InfoObject Tree ® Context Menu of Corresponding Characteristic  ® Activate Master Data.
    Upon Activation there are two scenarios to choose from:
    The Corresponding Master Data Is Already Being Used in Aggregates in the InfoCube:
    If you are already using the available master data in aggregates in InfoCubes, you cannot activate the master data individually. In this case, proceed as follows:
           1.      In the main menu, choose the path Tools ®Hierarchy/Attribute Change.
           2.      Proceed as described in System Response upon Changes to Data: Aggregate.
    The system now automatically restructures and activates the master data and its aggregates.
    Please note that this process can take several hours if the volume of data is relatively high. Therefore, you should simultaneously activate all of the characteristics that are affected by changes to their master data, at regular intervals.
    The Corresponding Master Data Is Not Used in Aggregates:
    Choose the path InfoObject Tree ® Context Menu of Corresponding Characteristic  ® Activate.
    The system now automatically activates the master data so that it can be used directly in reporting.
    Activating Texts
    Texts are active immediately and can be used directly in reporting. You do not need to Activate manually.
    thank u,
    reward if helpful.

  • Why does firefox (updated) on windows 7 NOT send a hotllink (must copy/paste),when using the 'send link' feature,whereas firefox on XP always sends a hotlink?

    Question
    why does firefox (updated) on windows 7 NOT send a hotllink (must copy/paste),when using the 'send link' feature,whereas firefox on XP always sends a hotlink? This feature has always worked perfectly on all my windows XP computers,but not at all on any of my versions of firefox on windows 7.How can i fix this? Why does it not work?

    Hi,
    Please check if this happens in [https://support.mozilla.com/en-US/kb/Safe%20Mode Safe Mode]. You can also attach a screenshot on this page below '''Post a Reply''' > '''Add images: Browse ...'''

  • Image attribute in h:commandButton tag

    If i use the image attribute in commandButton tag then the value can't be displayed.
    How can the value be displayed when the image attribute is used?
    <h:commandButton image="images/ex.gif" value="Add" action="#{MyBean.add}"/>
    displays only the image with no value.

    I think you cannot do that. Is that possible in simple Html? Why don't you wrtie on the image the value?

Maybe you are looking for

  • Changing the field properties (editabel/greyed out) dynamically?

    Hello I am developing an Adobe interactive form. My requirement is dynamically changing the filed properties based on the other field values/selections/inputs. 1) For example in the form, if user puts value_A in field_1, then, the field_2 should be g

  • About packages?

    How to create my own package? Where do I have to place it?

  • Can I shut off the voice promts?

    Is there ?any wat to turn off the annoying voice prompts?

  • Matlab Functions with java

    Hi friends.I have a many function that written in Matlab.Now I must use this functions in my java project.If I write this fungtion again I will spend very musch time .I want to call this function from java project how can I do it. Edited by: Turkfutu

  • Page Navigation Portlet issue

    I am having an issue with a page navigation portlet. I am using adaptive tags and we have actually implemented one custom tag that outputs the current page id. I will paste the code here. The issue is that in our portal the pages don't show up in the