Images path

Pablo Fernández <[email protected]> Thu, 6 Aug 2009 21:39:17 -0300
Newsgroups gmane.comp.java.struts-menu.user
Message-ID <[email protected]>
--===============1341851858350156222==
Content-Type: multipart/alternative; boundary=0003255752525b1ce2047082773a

--0003255752525b1ce2047082773a
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: 7bit

Hello I'm new to struts-menu, using version 2.4.3 with Struts2.
I have a menu-config.xml that looks like this:
<MenuConfig>
    <Displayers>
        <Displayer name="DropDown"
type="net.sf.navigator.displayer.DropDownMenuDisplayer"/>
        <Displayer name="TabbedMenu"
type="net.sf.navigator.displayer.TabbedMenuDisplayer"/>
        <Displayer name="Simple"
type="net.sf.navigator.displayer.SimpleMenuDisplayer"/>
        <Displayer name="Velocity"
type="net.sf.navigator.displayer.VelocityMenuDisplayer"/>
    </Displayers>


    <Menus>
        <Menu name="GMenu" title="Main menu" width="50">
            <Item name="Roles" title="ROLES">
                <Item name="rolesAlta" title="Alta" location="Role_input"
target="workFrame"/>
                <Item name="rolesListar" title="Listar" location="RoleList"
target="workFrame"/>
            </Item>
            <Item name="Users" title="USERS">
                <Item name="usersAlta" title="Alta" location="User_input"
target="workFrame"/>
                <Item name="usersListar" title="Listar" location="UserList"
target="workFrame"/>
            </Item>
        </Menu>
    </Menus>
</MenuConfig>


And my menu.jsp looks like this:
<body>
        <menu:useMenuDisplayer name="DropDown"
bundle="org.apache.struts.action.MESSAGE">
            <table cellpadding=0 cellspacing=0>
                    <tr>
                     <td>
                         <menu:displayMenu name="GMenu"/>
                    </td>
                </tr>
            </table>
        </menu:useMenuDisplayer>
    </body>

I'd like to get the down and right arrows wich are note rendered. I believe
it's because of my images path.
I need to get something like pages/images/Darrow.png as the source but I
only get images/Darrow.png.
How do I change it?
Thanks in advance!

--0003255752525b1ce2047082773a
Content-Type: text/html; charset=ISO-8859-1
Content-Transfer-Encoding: quoted-printable

Hello I&#39;m new to struts-menu, using version 2.4.3 with Struts2.<br>I ha=
ve a menu-config.xml that looks like this:<br>&lt;MenuConfig&gt;<br>=A0=A0=
=A0 &lt;Displayers&gt;<br>=A0=A0=A0 =A0=A0=A0 &lt;Displayer name=3D&quot;Dr=
opDown&quot; type=3D&quot;net.sf.navigator.displayer.DropDownMenuDisplayer&=
quot;/&gt;<br>
=A0=A0=A0 =A0=A0=A0 &lt;Displayer name=3D&quot;TabbedMenu&quot; type=3D&quo=
t;net.sf.navigator.displayer.TabbedMenuDisplayer&quot;/&gt;<br>=A0=A0=A0 =
=A0=A0=A0 &lt;Displayer name=3D&quot;Simple&quot; type=3D&quot;net.sf.navig=
ator.displayer.SimpleMenuDisplayer&quot;/&gt;<br>
=A0=A0=A0 =A0=A0=A0 &lt;Displayer name=3D&quot;Velocity&quot; type=3D&quot;=
net.sf.navigator.displayer.VelocityMenuDisplayer&quot;/&gt;<br>=A0=A0=A0 &l=
t;/Displayers&gt;<br>=A0=A0=A0 <br>=A0=A0=A0 <br>=A0=A0=A0 &lt;Menus&gt;<br=
>=A0=A0=A0 =A0=A0=A0 &lt;Menu name=3D&quot;GMenu&quot; title=3D&quot;Main m=
enu&quot; width=3D&quot;50&quot;&gt;<br>
=A0=A0=A0 =A0=A0=A0 =A0=A0=A0 &lt;Item name=3D&quot;Roles&quot; title=3D&qu=
ot;ROLES&quot;&gt;<br>=A0=A0=A0 =A0=A0=A0 =A0=A0=A0 =A0=A0=A0 &lt;Item name=
=3D&quot;rolesAlta&quot; title=3D&quot;Alta&quot; location=3D&quot;Role_inp=
ut&quot; target=3D&quot;workFrame&quot;/&gt;<br>=A0=A0=A0 =A0=A0=A0 =A0=A0=
=A0 =A0=A0=A0 &lt;Item name=3D&quot;rolesListar&quot; title=3D&quot;Listar&=
quot; location=3D&quot;RoleList&quot; target=3D&quot;workFrame&quot;/&gt;<b=
r>
=A0=A0=A0 =A0=A0=A0 =A0=A0=A0 &lt;/Item&gt;<br>=A0=A0=A0 =A0=A0=A0 =A0=A0=
=A0 &lt;Item name=3D&quot;Users&quot; title=3D&quot;USERS&quot;&gt;<br>=A0=
=A0=A0 =A0=A0=A0 =A0=A0=A0 =A0=A0=A0 &lt;Item name=3D&quot;usersAlta&quot; =
title=3D&quot;Alta&quot; location=3D&quot;User_input&quot; target=3D&quot;w=
orkFrame&quot;/&gt;<br>
=A0=A0=A0 =A0=A0=A0 =A0=A0=A0 =A0=A0=A0 &lt;Item name=3D&quot;usersListar&q=
uot; title=3D&quot;Listar&quot; location=3D&quot;UserList&quot; target=3D&q=
uot;workFrame&quot;/&gt;<br>=A0=A0=A0 =A0=A0=A0 =A0=A0=A0 &lt;/Item&gt;<br>=
=A0=A0=A0 =A0=A0=A0 &lt;/Menu&gt;<br>=A0=A0=A0 &lt;/Menus&gt;<br>
&lt;/MenuConfig&gt;<br><br><br>And my menu.jsp looks like this:<br>&lt;body=
&gt;<br>=A0=A0=A0 =A0=A0=A0 &lt;menu:useMenuDisplayer name=3D&quot;DropDown=
&quot; bundle=3D&quot;org.apache.struts.action.MESSAGE&quot;&gt;<br>=A0=A0=
=A0 =A0=A0=A0 =A0=A0=A0 &lt;table cellpadding=3D0 cellspacing=3D0&gt;<br>
=A0=A0=A0 =A0=A0=A0 =A0=A0=A0 =A0=A0=A0 =A0=A0=A0 &lt;tr&gt;<br>=A0=A0=A0 =
=A0=A0=A0 =A0=A0=A0 =A0=A0=A0 =A0=A0=A0 =A0&lt;td&gt;<br>=A0=A0=A0 =A0=A0=
=A0 =A0=A0=A0 =A0=A0=A0 =A0=A0=A0 =A0=A0=A0=A0 &lt;menu:displayMenu name=3D=
&quot;GMenu&quot;/&gt;<br>=A0=A0=A0 =A0=A0=A0 =A0=A0=A0 =A0=A0=A0 =A0=A0=A0=
 &lt;/td&gt;<br>=A0=A0=A0 =A0=A0=A0 =A0=A0=A0 =A0=A0=A0 &lt;/tr&gt;<br>=A0=
=A0=A0 =A0=A0=A0 =A0=A0=A0 &lt;/table&gt;<br>
=A0=A0=A0 =A0=A0=A0 &lt;/menu:useMenuDisplayer&gt;<br>=A0=A0=A0 &lt;/body&g=
t;<br><br>I&#39;d like to get the down and right arrows wich are note rende=
red. I believe it&#39;s because of my images path.<br>I need to get somethi=
ng like pages/images/Darrow.png as the source but I only get images/Darrow.=
png.<br>
How do I change it?<br>Thanks in advance!<br>

--0003255752525b1ce2047082773a--


--===============1341851858350156222==
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: inline

------------------------------------------------------------------------------
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
--===============1341851858350156222==
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: inline

_______________________________________________
struts-menu-user mailing list
struts-menu-user-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org
https://lists.sourceforge.net/lists/listinfo/struts-menu-user

--===============1341851858350156222==--