Localization of image in UIX

Hi, I have a problem with showing the right image depending on selected language.
I followed instructions in document Developing Multilangual J2EE Web Applications using Oracle JDeveloper 10g. I've successfully created ApplicationResources.properties files and traslated some text in my uix files.
Now the problem is:
I have one template file (template.uit) on which all other uix files are based. I can translate text in that file without a problem:
<messageStyledText styleClass="Red" vAlign="bottom" text="${nls['template.Label1']}" destination="something.do"/> ,
but I also have an image which should be translated (e.g. logo.jpg) I can prepare another image (e.g. translated_logo.jpg). Link to this picture is not direct, it's through xxx-laf.xml file, so it looks like this:
<icon name="sample:xxx_logo"/>
and in xxx.laf.xml file:
<icon name="sample:xxx_logo">
<context-image uri="pictures/logo.jpg"/>
</icon>
Now the question is.. how to show the right picture depending on selected language. I tried:
<icon name="${nls['template.logo']}">
with template.logo=sample:xxx_logo defined in applicationResources.properties file defined, but it doesn't work.
What should I do? Thnx for help.

Is it in the web viewer, applet (desktop) viewer or PDF?
Question marks indicate a character encoding issue.
Which version of the JRC are you using?
Sincerely,
Ted Ueda

Similar Messages

  • How to view blob/image in uix?

    Version: JDev 9.0.5.2
    Goal: To view an image that is coming from a database table.
    Set Up:
    In the database: I have a database table with a blob data type. The blob data type contains a pointer to the image in a database directory.
    In JDev.model: I have an Entity Object and View Object that contains the column attribute with a blob/blob domain data type.
    Question: How do I build a uix page that allows me to pull in the blob (image)?
    Thanks for the assistance.
    --Connie                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

    Take a look at this, hope it helps.
    http://download-east.oracle.com/otn_hosted_doc/jdeveloper/904preview/creating_html_clients/uix_pimagewintermediatags.html

  • How to set a uniform display size of multiple intermedia image types - wher

    I have read "If you want to limit the size of the file that can be uploaded, you can do this as a post generation
    step, by adding the maxFileSize property to the <controller> element in the struts-config:
    This does not address how to limit the *** display size *** where you have multiple intermedia image types - where the original size is not uniform.
    If an image is uploaded where the true image display size is 1024 x 768 - it will display that way in the table/table-form. This will create un-even display size's where previous images sizes where different 384 x 384 and so on.
    Is there a way to encode the display size so that *** ALL *** images regardless of their true size are displayed uniformly at least on one dimension (64 x ???)? This is possible when using products such as Dreamweaver or Flash.
    BTW - JHS/***JDev*** synergy is truely magnificient!!! Way-To-Go Oracle!!!!!!!!!!! Keep it up!!!!
    BG...

    Bill,
    I did some tests, and was able to reproduce it. The problem is that JHeadstart distinguishes between display types fileDownload and image, but UIX uses the same <media> tag to handle both display types. It will look at runtime whether it must render a hyperlink to download the document, or to render it right away as an image.
    To get all images the same size, you can set the display width and height, AND the display type must be set to image.
    However, to get the file name used as download link, you must set the FileName attribute AND the display type must be set to "fileDownload" ..
    So, to solve your problem, it is easiest to set the displayType to "fileDownload" and set the width and height properties post-generation in the generated UIX page.
    In the next release of Jheadstart, we will fix this, and always pick up width, height and fileName settings regardless of the display type.
    Note that you should also set the FileName property against the attribute you are using to upload the file.
    Steven Davelaar,
    JHeadstart Team.

  • OrdImage with UIX

    I'm using OrdImage to load images in via JDBC as the following code fragment shows:
    sqlString="Begin INSERT INTO l2i_photo "+
    "(photoid, cltype, clid, filename,photo)"+
    "VALUES (L2I_PHOTO_SEQ.NEXTVAL, "+clType+","+recId+",'"+fileName+"',ordsys.ordImage.init()) Returning photoid into ?; End;";
    st.getConnection().setAutoCommit(false);
    cst = (OracleCallableStatement)(st.getConnection()).prepareCall(sqlString);
    cst.registerOutParameter(1,Types.INTEGER);
    cst.execute();
    photoId=cst.getInt(1);
    cst.close();
    sqlString="Select photo From l2i_photo Where photoid="+photoId+" for update";
    OracleResultSet rs = (OracleResultSet)st.executeQuery(sqlString);
    rs.next();
    photoImage = (OrdImage)rs.getCustomDatum( 1, OrdImage.getFactory());
    photoImage.loadDataFromFile(info.pathName+"Photos\\"+rec.fileName);
    cst.setCustomDatum(1, photoImage);
    cst.execute();
    st.getConnection().commit();
    st.getConnection().setAutoCommit(true);
    This appears to load my images just fine, I can even see those images using JClient with intermedia. However when I try to view the images via uix intermedia using the following code I don't see the image:
    <messageFileUpload model="${bindings.Photo}">
    <end>
    <media model="${ctrl:createMediaModel(bindings.Photo,'AppModuleLocal')}"/>
    </end>
    </messageFileUpload>
    The above uix code works great so long as I load the image with the uix control. Is there something I need to do to make this work with images loaded via the above jdbc?? Thanks in advance for any and all help..

    UIX talks to the ADF model directly. So you would need to get your OrdImage into the ADF model. Maybe a person more familiar with the model stuff than I am can comment?

  • Uploading images (photo's) using messageFileUpload?

    I'm trying to use images in UIX in combination with JHeadstart.
    Has anyone used the <messageFileUpload> in UIX? Is this the element to use if I want to upload a picture to the database?
    More-over, what things do I have to keep in mind if I use this eg. HOW do I use it and what column type should the db-column be?
    I guess I can display this column in UIX using the <image> element? Any examples are more than welcome.

    Bram,
    I'm trying to use images in UIX in combination with JHeadstart.
    Has anyone used the <messageFileUpload> in UIX? Is this the element to use if I want to upload a picture to the database?Yes, you can use this element.
    More-over, what things do I have to keep in mind if I use this eg. HOW do I use it and what column type should the db-column be?The DB column type should be a BLOB. Out of the box, the MVC Framework only supports file upload to a file server. Please address this part of your question to the Cleveland discussion forum on OTN. The Cleveland forum is the forum to ask questions about the MVC Framework. (The MVC Framework used to be called Project Cleveland).
    I guess I can display this column in UIX using the <image> element? Any examples are more than welcome. Yes, you can use the <image> element. What is your e-mail address? We can send you some sample code.
    JHeadstart Team

  • UIX InterMedia

    I'm using OrdImage to load images in via JDBC as the following code fragment shows:
    sqlString="Begin INSERT INTO l2i_photo "+
    "(photoid, cltype, clid, filename,photo)"+
    "VALUES (L2I_PHOTO_SEQ.NEXTVAL, "+clType+","+recId+",'"+fileName+"',ordsys.ordImage.init()) Returning photoid into ?; End;";
    st.getConnection().setAutoCommit(false);
    cst = (OracleCallableStatement)(st.getConnection()).prepareCall(sqlString);
    cst.registerOutParameter(1,Types.INTEGER);
    cst.execute();
    photoId=cst.getInt(1);
    cst.close();
    sqlString="Select photo From l2i_photo Where photoid="+photoId+" for update";
    OracleResultSet rs = (OracleResultSet)st.executeQuery(sqlString);
    rs.next();
    photoImage = (OrdImage)rs.getCustomDatum( 1, OrdImage.getFactory());
    photoImage.loadDataFromFile(info.pathName+"Photos\\"+rec.fileName);
    cst.setCustomDatum(1, photoImage);
    cst.execute();
    st.getConnection().commit();
    st.getConnection().setAutoCommit(true);
    This appears to load my images just fine, I can even see those images using JClient with intermedia. However when I try to view the images via uix intermedia using the following code I don't see the image:
    <messageFileUpload model="${bindings.Photo}">
    <end>
    <media model="${ctrl:createMediaModel(bindings.Photo,'AppModuleLocal')}"/>
    </end>
    </messageFileUpload>
    The above uix code works great so long as I load the image with the uix control. Is there something I need to do to make this work with images loaded via the above jdbc?? Thanks in advance for any and all help..

    hello there... just to make sure, i reinstalled oracle database 10g standard edition 10.1.2.0.1 on a different computer, created a table like this
    create table t(n number primary key, d ordsys.ordvideo);
    insert into t values (1,null);
    commit;
    now created a uix page with inputform without navigation, and the form property uses upload = true. run the page and selet that same image and the image is corrupted. this means there is a bug in the db.
    can any one solve this please? is there a patch for this? is the problem in the ordvideo domain or in the db itself?
    please help me in this
    if any one from oracle wants to check this please send me email at [email protected] and i will gladly send you the image that causes the problem.
    best regards

  • JTextField focus problems in JApplet

    I have a JApplet like this:
    public class AppletLogin extends JApplet {
    public void init() {
    this.setSize(new Dimension(400,300));
    this.getContentPane().setLayout(new FlowLayout());
    this.getContentPane().add(new JTextField(12));
    this.getContentPane().add(new JTextField(12));
    The first problem I have is that both JTextField don't show the cursor if you click in them, they also don't show selected text. If you select another window and then you select back the browser, the cursor appears.
    The second problem is that sometimes, if the cursor appears in the first JTextField and with the TAB or with the mouse you set the focus on the second JTextField, then you can't focus back to the first JTextField. This second problem disappears if you add "this.requestFocus()" in init.
    This behaviour is shown in Windows NT 4.0 and 98 with Netscape 4.7 and 6.2.
    I don't have this problem in Windows 2000 - Netscape 4.7 / 6.2 and Linux - Netscape 6.2.
    The Plugin is 1.3.1_01a and 1.3.1_02.
    I think I have the same problem explained in bug 4186928 but with a JApplet. I have tried the "dispatchEvent(new WindowEvent(this, WindowEvent.WINDOW_ACTIVATED))" workaround, using the 'SwingUtilities.getWindowAncestor(this)' Window, but it doesn't
    work.
    Any suggestions to solve the first problem? Should I submit a bug?

    Of course. Here is the original code. I have only removed 'imports' from other classes of the project used for localization and image loading.
    If you want me to translate for you the Spanish comments to English, please tell me.
    This is the code as is now. I have already tried 'requestFocus' and 'grabFocus' even inside a MouseListener attached to 'usuario' (user) and 'clave' (passwd), with no success.
    This code works fine with 1.2.2 plug-in on any OS and with 1.3.1_02 plug-in on Windows 2000 and Linux.
    But with 1.3.1_02 plug-in under Windows 98/NT4.0 and Netscape 4.7/6.2 the focus is crazy. Our customer uses Windows NT 4.0.
    This panel is for user and passwd validation. We use it attached to an JApplet. It has some methods to attach ActionListener to it. It also has a KeyListener to capture 'intro' events. Thats all.
    package project.pkg
    import java.util.TooManyListenersException;
    import java.awt.event.ActionListener;
    import java.awt.event.ActionEvent;
    import java.awt.event.KeyListener;
    import java.awt.event.KeyEvent;
    import java.awt.event.ComponentAdapter;
    import java.awt.event.ComponentEvent;
    import javax.swing.border.EmptyBorder;
    // import of other.project.pkg
    // import of other.project.pkg
    import javax.swing.*;
    import java.awt.*;
      * Panel de acceso a la aplicaci�n.
      * @version  $Revision: 1.8 $
    public class PanelAcceso extends JRootPane {
       // Marca de revision. ///////////////////////////////
       private final static String VERSION = "@(#) $Id: PanelAcceso.java,v 1.8 2001/05/08 15:55:46 user Exp $";
       /** Campo usuario */
       private JTextField usuario;
       /** Campo clave */
       private JTextField clave;
       /** Panel de los controles */
       private JPanel controles;
       /** Panel auxiliar marco para controles. */
       private JPanel marco;
       /** ActionListener para notificaci�n de intro. de usuario y passwd */
       private ActionListener entrarActionListener = null;
        * Construye un panel de acceso.
       public PanelAcceso() {
         JLabel portada = new JLabel(/*HERE goes an ImageIcon*/);
         portada.setHorizontalAlignment( SwingUtilities.CENTER);
         portada.setVerticalAlignment( SwingUtilities.CENTER);
         getContentPane().setLayout( new BorderLayout());
         getContentPane().add( portada, BorderLayout.CENTER);
         getContentPane().setBackground( Color.white);
         controles = new JPanel();
         controles.setLayout(new GridLayout(4,2,5,5));
         controles.setOpaque(false);
         controles.add( new JLabel("Ver. 2.5.1"));
         controles.add(Box.createHorizontalGlue());
         controles.add(Box.createHorizontalGlue());
         controles.add(Box.createHorizontalGlue());
         controles.add( new JLabel("User") );
         usuario = new JTextField( 12);
         usuario.addKeyListener(keyListener);
         controles.add( usuario);
         controles.add( new JLabel("Passwd") );
         clave = new JPasswordField( 12);
         clave.addKeyListener(keyListener);
         controles.add( clave);
         // Panel auxiliar marco para controles.
         marco = new JPanel(new FlowLayout(FlowLayout.RIGHT));
         marco.setOpaque(false);
         marco.add(controles);
         setGlassPane(marco);
         // Listener para fijar el borde de marco seg�n cambie de
         // tama�o el panel.
         marco.addComponentListener( new ComponentAdapter() {
           public void componentResized(ComponentEvent e) {
             changeEmptyBorder();
           public void componentShown(ComponentEvent e) {
             changeEmptyBorder();
         marco.setVisible(true);
        * Devuelve el usuario introducido.
       public String getUser() {
         return usuario.getText();
        * Devuelve la contrase�a introducida.
       public String getPasswd() {
         return clave.getText();
        * Limpia el panel de acceso.
       public void limpiar() {
         clave.setText("");
         usuario.setText("");
        * A�ade un listiener a los eventos de
        * petici�n de acceso dado un usuario y
        * una contrase�a.
        * @throws TooManyListenersException si ya se ha a�adido un listener.
       public void addEntrarListener(ActionListener l) throws TooManyListenersException {
         if ((entrarActionListener != null) && (entrarActionListener != l))
           throw new TooManyListenersException("Solo se admite un listener");
         else
           entrarActionListener = l;
        * Borra un listener.
       public void removeEntrarListener(ActionListener l) {
         if (entrarActionListener == l)
           entrarActionListener = null;
         else
           throw new IllegalArgumentException("Intento de borrar un listener no a�adido");
        * Borra todos los listeners.
       public void removeEntrarListeners() {
         entrarActionListener = null;
        * Instancia privada de KeyListener para capturar
        * los 'enter' en los campos de usuario y passwd.
       private KeyListener keyListener = new KeyListener() {
          * Method to handle events for the KeyListener interface.
          * @param e KeyEvent
         public void keyPressed(KeyEvent e) {
           if (e.getKeyCode() != KeyEvent.VK_ENTER)
             return;
           if ((e.getSource() == usuario) )
             clave.requestFocus();
           else {
             requestFocus(); // Se evitan varias pulsaciones seguidas.
             if (entrarActionListener != null)
               entrarActionListener.actionPerformed(new ActionEvent(this, 0, ConstantesXigus.ACCION_ENTRAR));
         /** Method to handle events for the KeyListener interface. */
         public void keyReleased(KeyEvent e) {}
         /** Method to handle events for the KeyListener interface. */
         public void keyTyped(KeyEvent e) {}
        * Ajusta el borde del marco de controles para que aparezcan centrados.
       private void changeEmptyBorder() {
         Dimension dimMarco   = marco.getSize();
         Dimension dimInterno = controles.getPreferredSize();
         int altoBorde  = dimMarco.height - dimInterno.height;
         int anchoBorde = (dimMarco.width - dimInterno.width)/2;
         marco.setBorder( new EmptyBorder( (int)(altoBorde * 0.75), anchoBorde, (int)(altoBorde * 0.25), anchoBorde));
    }Thank you very much for your help

  • Localized versions of FXML?

    I am trying to figure out the best way to load localized versions of FXML content. I know that I can localize strings, images etc. by specifying a ResourceBundle when loading the FXML using FXMLLoader with a ResourceBundle. But what about if you need to tweak the FXML for different locales (eg, adding more real estate for certain elements, different fonts, etc). Is there any way to create localized versions of FXML content? The only thing I can come up with is a naming convention like MyForm.fxml, MyForm_de_DE.fxml, ... and trying to load them based on the locale, but I'd have to come up with my own fallback for specific locales that aren't found.
    Any strategies/patterns/advice would be appreciated.

    I guess something like you propose that follows the already established pattern of ResourceBundle.getBundle() would be a good idea. You may probably want to have a look at the source code of ResourceBundle to know how it works

  • UIX: how to get dynamic image generation working on ias10G?

    Hi,
    Anybody got UIX Dynamic Image Generation working on ias10G, on unix? My Images do not get generated (the page only shows the plain links)
    My env:
    - ias10G
    - AIX Version 5
    - java version: unknown, do not know what version ias10G is using
    On earlier versions (OC4J 903) we had to make sure an XServer was running and pointed our DISPLAY variable to that server. When the XServer was down, we got a nice error message in the application logs. However on ias10G I cannot figure out where to set this variable and I cannot find any error messages.
    Can anybody please help me out a bit?
    Cheers,
    Martijn

    Hi Andy,
    Thanks for your reply. However, I have not yet been able to get it working.
    I have verified that the java version is indeed (this is what the oc4j logfile shows when I supply the -showversion parameter)
    java version "1.4.1"
    Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.1)
    Classic VM (build 1.4.1, J2RE 1.4.1 IBM AIX build ca1411-20030930 (JIT enabled: jitc))The relevant fragment of the opmn.xml:
              <process-type id="oc4j_cif_mh" module-id="OC4J">
                   <module-data>
                      <category id="start-parameters">
                         <data id="java-options" value="-Djava.security.policy=/oracbd/j2ee/oc4j_cif_mh/config/java2.policy -
    Djava.awt.headless=true -Xmx75m -Xms75m -showversion"/>
                         <data id="oc4j-options" value="-properties"/>
                      </category>
                      <category id="stop-parameters">
                         <data id="java-options" value="-Djava.security.policy=/oracbd/j2ee/oc4j_cif_mh/config/java2.policy -
    Djava.awt.headless=true"/>
                      </category>
                   </module-data>
                   <start timeout="900" retry="2"/>
                   <stop timeout="120"/>
                   <restart timeout="720" retry="2"/>
                   <port id="ajp" range="3301-3400"/>
                   <port id="rmi" range="3201-3300"/>
                   <port id="jms" range="3701-3800"/>
                   <process-set id="default_island" numprocs="1"/>
                </process-type>Finally, your JSP passes the test. I can access it. But still no uix image generation. Are there any logfiles I can check for error messages on the failing image generation? May it be a web cache problem?
    Thanks in advance

  • Uix image

    Hi,
    how can set a background image in an uix page ?
    thank for help
    Andrea

    You can try using css and setting the styleClass attribute.
    http://www.w3.org/TR/REC-CSS2/colors.html#propdef-background-image

  • How to localize core UIX components?

    Need to localize some core UIX 2.2.8 components such as:
    Select, Previous, Next, "X-Y of Z", "No records found", etc.
    How?

    Unfortunately, you're mostly correct. Adding additional language/locales to UIX is not officially supported. We'll look at ways to extend the available language / locale list in the future.
    However, there was a similar discussion recently on the forum -> Re: change language (uix jsp)
    But I advise against the approach documented by the user since it would breach the license agreement.
    Regards,
    Tony Jewtushenko

  • Storing Images in Database using ADF/UIX

    Hello,
    Please let me know of any exmaples or tutorials on how to use Oracle Intermedia to store Images in Database and retrieve the images and display them on UIX.
    I tried using declarative approach of using ADF input form for the table which contains a blob column.
    In the entity object, i changed the blob column type to OrDImageDomain. I changed the Form settings to POST and UsesFileUpload attribute to True.
    I got an error "Incompatible Types" when trying to insert a row in the database table.
    Please provide suggestions/comments
    Thanks a lot.

    Now I'm using OrdFileUploadManager and i'm getting an error message as,
    VB_Pbefore (The system cannot find the file specified. )
    Pbefore is the attribute name of the view object.
    The form that i'm using to insert the row in the database is,
    <labeledFieldLayout>
    <contents>
    <messageChoice model="${bindings.Pid1}">
    <contents childData="${bindings.Pid1.displayData}">
    <option model="${uix.current}"/>
    </contents>
    </messageChoice>
    <messageChoice model="${bindings.Rno1}">
    <contents childData="${bindings.Rno1.displayData}">
    <option model="${uix.current}"/>
    </contents>
    </messageChoice>
    <messageFileUpload model="${bindings.Pbefore}">
    <end>
    <media model="${ctrl:createMediaModel(bindings.Pbefore,'ReoAppModuleLocal')}"/>
    </end>
    </messageFileUpload>
    <messageFileUpload model="${bindings.Pafter}">
    <end>
    <media model="${ctrl:createMediaModel(bindings.Pafter,'ReoAppModuleLocal')}"/>
    </end>
    </messageFileUpload>
    <messageStyledText/>
    <submitButton text="Submit"/>
    <submitButton text="Confirm Repair Photos" model="${bindings.Commit}" id="Commit2" event="action"/>
    </contents>
    </labeledFieldLayout>

  • Jdeveloper 10.1.2, UIX , Intermedia , unknown error causes image corruption

    Dear Sirs...
    i wrote an application using jdeveloper 10.1.2, and uix. the database version is 10g release 2.
    i created an intermedia field in the db of type ORDVIDEO.
    the problem as follows:
    i have ONE JPG picture that get corrupted when it is uploaded into the system.
    if i use other picture the problem never happens,
    if i open the picture that gets corrupted in MS Paint and save it again as jpg it will be uploaded correctly.
    if i modify the picture a little or change its dimentions it will be saved correctly.
    just to make sure i created a new web application that only uploads this ordvideo field. and i uploaded the original picture and the problem rises again.
    so i am sure 100% that the problem is not in my program at all.
    Is the problem in the ORDVIDEODOMAIN?
    Is it in the database intermedia?
    i never modified anything at all.
    i think the problem might be related to the db intermedia. can i disable data processing of the intermedia field?
    please if any one know anything about this please post it here. if any one has a similar problem please tell me.
    thanks

    hello there... just to make sure, i reinstalled oracle database 10g standard edition 10.1.2.0.1 on a different computer, created a table like this
    create table t(n number primary key, d ordsys.ordvideo);
    insert into t values (1,null);
    commit;
    now created a uix page with inputform without navigation, and the form property uses upload = true. run the page and selet that same image and the image is corrupted. this means there is a bug in the db.
    can any one solve this please? is there a patch for this? is the problem in the ordvideo domain or in the db itself?
    please help me in this
    if any one from oracle wants to check this please send me email at [email protected] and i will gladly send you the image that causes the problem.
    best regards

  • Boot Image localization

    Hi everyone!
    I was reading a post on a forum which was providing a script to set the localization of a boot image as a prestart command. The script is providing a way to load another language as a displayed language when selecting a task sequence.
    I am running ConfigMgr 2012 R2.
    I am trying to load the French language using that script. The script seem to work and the language is set but half of the text is translated:
    I know that this feature was available in ConfigMgr 2012 SP1 and unfortunately I do not have an environment of that kind right now but I was wondering if this was the same behavior or that it is a problem in the R2 release (WINPE 5).
    If anyone could give me more information about that would be nice and I will post a follow up as soon as I can reinstall a ConfigMgr 2012 SP1 environment to validate this.
    Thank you all
    Mathieu

    After trying on a ConfigMgr 2012 SP1 CU4 and having the same issue, I finally went to the old way.
    Add LP to a custom boot image.
    Now that it is fully localised, there is no problem.
    MS should really look into real Multilanguage offer for their products.
    Mathieu

  • UIX Templates and images source

    My project structure is this:
    HTML sources
    images (folder)
    templates (folder)
    page.uix
    page.uix uses a template in the templates folder, which uses some of the images in the images folder. In the template, under <corporateBranding> I have an image with the source attribute set to "images/logo.jpg". In <globalButtons> I am databinding to a DataObjectList (albeit <inline>) and my source attributes for the buttons are set to "/images/imageName.gif" (note the leading "/"). I don't understand why these two attributes have to have different settings for the source as they're both getting their images from the same location. When I try the alternative source syntax the images aren't rendered. Anyone help?
    Thanks
    Ian

    The <image> inside <coporateBranding> is not processed any further and is
    converted directly into an HTML <img src=".."> tag.
    However, the source attribute of a <globalButton> indicates an image on the local file system that needs further processing. The image is colorized
    (depending on whether the globalButton is selected/disabled) and a border is
    drawn around it.
    Because of this difference, the relative root of the source of the globalButton is the servlet root, and not the current URL path.
    If the icon you want to use (as your globalButton) is already fully processed and does not need to be colorized (as described above), you may use the "icon" attribute (of globalButton) instead of the "source" attribute. The "icon" attribute is rooted exactly the same as the "source" attribute of an <image> tag.

Maybe you are looking for

  • Ajax script is not working in Safari 3-4

    Hi, I'm using Ajax script in a form to select the correct number of days depending on chosen year and month. Here is the script I'm using: <script language="JavaScript" type="text/javascript"> var daysInMonth = new Array(); function createXMLHttpRequ

  • How to bind a VO :variable in a WHERE clause to a page parameter

    Hello, I have a VO. This VO has a variable :v in the WHERE clause of the query. This VO is used by different UI components in a page (a table, a tree). The page already has a parameter defined in his properties #{viewScope.myparam} What I want is to

  • Selection screen - For

    Hi, This is probably very easy but I am new to ABAP and cannot find a solution for the following problem: In the selection screen I have defined two fields: SELECT-OPTIONS: bukrs FOR skb1-bukrs,                               ktopl FOR ska1-ktopl. How

  • I can boot but not re-boot.....

    Ok so here is my problem. I reinstalled windows XP tonight after erasing all of the data on the previous partition by mistake (dont ask - but if you must read here).... http://discussions.apple.com/thread.jspa?threadID=1796486&tstart=0 So i did a ful

  • Cisco IronPort with On Premise Exchange 2013

    Hello All The company I work for is in the process of starting an on premise Exchange 2007 to Exchange 2013 migration. Most of the issues I don't think I'll have an issue with; however, where I am not finding much info is in regards to other companie