Struts menu Question

2004-02-26 Thread Daniel
I know, this list is not struts-menu list, but .. at the struts menu example (permissions menu) at SetPermissionsAction.java there is this line: String[] menus = request.getParameterValues("menus"); I'd like to know just where they put the menus attribute in a session ?

RE: struts-menu from action

2004-02-05 Thread Pingili, Madhupal
newMenuRep.addMenu( mrp.getMenu(menuName) ); logDebug.debug("UserInitializationAction: MenuNames: " + menuName ); } } } session.setAttribute(MenuRepository.MENU_REPOSITORY_KEY, newMenuRep); //End of Menu Repository creation. Now, this new MenuRepository wi

RE: struts-menu from action

2004-02-04 Thread Vijay Kandy
I was going along that path and I wanted a second opinion. Thank you. Vijay Kandy -Original Message- From: David Erickson [mailto:[EMAIL PROTECTED] Sent: Wednesday, February 04, 2004 4:57 PM To: Struts Users Mailing List Subject: Re: struts-menu from action You would probably have to

Re: struts-menu from action

2004-02-04 Thread David Erickson
Kandy" <[EMAIL PROTECTED]> To: "'Struts Users Mailing List'" <[EMAIL PROTECTED]> Sent: Wednesday, February 04, 2004 2:43 PM Subject: struts-menu from action > Hello All, > > I was going through examples of struts-menu and it looks like the menu items >

struts-menu from action

2004-02-04 Thread Vijay Kandy
Hello All, I was going through examples of struts-menu and it looks like the menu items are read from menu-config.xml. Is it possible to populate these items an Action class? I would like to get these from Action because the menu items are stored in a database and are retrieved based on whos

RE: Struts-Menu (Support URL Re-writing)

2004-01-22 Thread Matt Raible
Sounds complicated. I don't use struts-layout so I don't know that I'm that interested in *fixing* struts-menu so it works with it. Maybe you should check with them and see why they don't support the latest struts-menu - and why they care what version of struts-menu

RE: Struts-Menu (Support URL Re-writing)

2004-01-21 Thread Parag Pattewar
attribute for the and . Thanks Parag -Original Message- From: Matt Raible [mailto:H Sent: Tuesday, January 20, 2004 7:32 PM To: 'Struts Users Mailing List' Subject: RE: Struts-Menu (Support URL Re-writing) I need to know a couple things to help you with this problem. 1. What

RE: Struts-Menu (Support URL Re-writing)

2004-01-20 Thread Matt Raible
I need to know a couple things to help you with this problem. 1. What version of Struts Menu are you using? 2. Which displayer are you using? Also, knowing what platform (OS) and JDK version you're using can't hurt. Matt > -Original Message- > From: Parag Pattewa

RE: Struts-Menu (Support URL Re-writing)

2004-01-20 Thread Parag Pattewar
Hi Where I can get a Struts-Layout.jar? The jar should be compatible with a Struts-Menu 2.1.jar Thanks in advance Thanks and Regards Parag -Original Message- From: Matt Raible [mailto:[EMAIL PROTECTED] Sent: Monday, January 19, 2004 7:55 PM To: 'Struts Users Mailing List' S

RE: Struts-Menu (Support URL Re-writing)

2004-01-19 Thread Parag Pattewar
. Regards Parag -Original Message- From: Matt Raible [mailto:[EMAIL PROTECTED] Sent: Saturday, January 17, 2004 9:20 PM To: 'Struts Users Mailing List' Subject: RE: Struts-Menu (Support URL Re-writing) Change the "location" attribute to a "action" attribute, where

Re: struts-menu-user -- confirmation of subscription -- request 348649

2004-01-19 Thread snpe
On Monday 19 January 2004 06:47 pm, [EMAIL PROTECTED] wrote: > struts-menu-user -- confirmation of subscription -- request 348649 > > We have received a request from 10.3.1.8 for subscription of your > email address, <[EMAIL PROTECTED]>, to the [EMAIL PROTECTED] > mailing

RE: Struts-Menu (Support URL Re-writing)

2004-01-19 Thread Matt Raible
Struts Menu 2.0 and above. What version of "Struts Menu" are you using? Feel free to subscribe to the struts-menu mailing list and move this discussion over there. http://lists.sourceforge.net/lists/listinfo/struts-menu-user Or use the forums: http://sourceforge.net/forum/?group_id=4

RE: Struts-Menu (Support URL Re-writing)

2004-01-18 Thread Parag Pattewar
- From: Matt Raible [mailto:[EMAIL PROTECTED] Sent: Saturday, January 17, 2004 9:20 PM To: 'Struts Users Mailing List' Subject: RE: Struts-Menu (Support URL Re-writing) Change the "location" attribute to a "action" attribute, where the value of "action" m

RE: Struts-Menu (Support URL Re-writing)

2004-01-17 Thread Matt Raible
ng and I'll fix it. Matt > -Original Message- > From: Parag Pattewar [mailto:[EMAIL PROTECTED] > Sent: Saturday, January 17, 2004 12:05 AM > To: Matt Raible; 'Struts Users Mailing List' > Subject: RE: Struts-Menu (Support URL Re-writing) > > >

RE: Struts-Menu (Support URL Re-writing)

2004-01-17 Thread Parag Pattewar
Hi I am having previous implementation of struts-menu as below I have changed it as below, is it the correct way of using action and forward attributes in struts-menu. -Original Message- From

RE: Struts-Menu (Support URL Re-writing)

2004-01-16 Thread Parag Pattewar
Hi Can you tell me , How do I implement Forward or Action attribute in struts-config.xml during the implementation of struts-menu. I am putting the entry of struts-menu in struts-config.xml as below. How do I put the above implementation in action and Forward attributes

Re: Struts-Menu (Support URL Re-writing)

2004-01-16 Thread Matt Raible
In 2.0, you can use a "forward" or "action" attribute - and struts-menu will look this up in struts-config.xml. That's all I'm trying to say - both of these should have URL re-writing built in. Matt On Jan 16, 2004, at 6:11 PM, Edgar P Dollin wrote: Unless I a

RE: Struts-Menu (Support URL Re-writing)

2004-01-16 Thread Edgar P Dollin
Unless I am mistaken the relative url in struts-menu is just the text passed in from menu-config.xml. In the CoolMenuDisplayer it calls, buildMenuString --> getArgs --> getUrl which unless there is prior transformation the string from the config. Let me know if I am seeing it wrong or i

RE: Struts-Menu (Support URL Re-writing)

2004-01-16 Thread Matt Raible
Struts Menu makes use of Struts classes to support "forward" and "action" attributes. If you use those, you'll likely get the re-writing you're looking for. I did this on a previous project and did find that the "forward" attribute worked, but not the &quo

RE: Struts-Menu (Support URL Re-writing)

2004-01-16 Thread Edgar P Dollin
You have the source to struts and the source to struts-menu, grab the code from struts and plug it into struts-menu and submit a patch. You might need a menu-config.xml option to indicate that you will be url rewriting. Edgar -Original Message- From: Parag Pattewar [mailto:[EMAIL

Re: Struts-Menu (Support URL Re-writing)

2004-01-16 Thread Matt Raible
If you use forwards or actions for attributes, it should do this for you. On Jan 16, 2004, at 5:20 AM, Parag Pattewar wrote: Hi all How do I change Struts-Menu implemention, so it can support URL ReWriting for session tracking? Thanks and Regards Parag Pattewar Persistent Systems Private

Struts-Menu (Support URL Re-writing)

2004-01-16 Thread Parag Pattewar
Hi all How do I change Struts-Menu implemention, so it can support URL ReWriting for session tracking? Thanks and Regards Parag Pattewar Persistent Systems Private Limited "Bhageerath" 402, Senapati Bapat Road Pune 411016 India Tel: +91 (20) 2567 8900 extn. 2640 Fax: +91 (20)

Re: [ANNOUNCE] Struts Menu 2.0 Released!

2003-12-02 Thread Vic Cekvenich
It's in the navigator package. (but no need for CVS, you can just use the jar and look at the war example). .V snpe wrote: Hello, Is it Struts Menu 2.0 in CVS for Struts Menu ? I checkout HEAD and RELEASE_NOTES have only 1.3 version regards Haris Peco On Monday 01 December 2003 11:07 am,

Re: [ANNOUNCE] Struts Menu 2.0 Released!

2003-12-02 Thread snpe
Hello, Is it Struts Menu 2.0 in CVS for Struts Menu ? I checkout HEAD and RELEASE_NOTES have only 1.3 version regards Haris Peco On Monday 01 December 2003 11:07 am, Matt Raible wrote: > This release is a significant refactoring of the 1.x codebase. The > source > and site is now bu

Re: Struts & menu

2003-12-02 Thread Francesco Di Candia
I'll try it. thank u all. Francesco - Original Message - From: Witt, Mike (OH35) To: Struts Users Mailing List Sent: Monday, December 01, 2003 9:24 PM Subject: RE: Struts & menu I also use struts menu ... very easy to get started with. Once installed and config

Re: [ANNOUNCE] Struts Menu 2.0 Released!

2003-12-01 Thread David Chelimsky
Matt, I'm using Maven to build my project and I see the 2.0 jar is not yet deployed to the maven repository (http://www.ibiblio.org/maven/struts-menu/jars/). Do you plan to have it there? If so, when? Thx - Original Message - From: "Matt Raible" <[EMAIL PROTE

Re: [ANNOUNCE] Struts Menu 2.0 Released!

2003-12-01 Thread Kwok Peng Tuck
to improve documentation. IMO, the Velocity templates is huge because it means "if it's possible with HTML" - it's possible with Struts Menu. Changes (http://struts-menu.sourceforge.net/changes-report.html): - Renamed package structure to net.sf.navigator. - Added support for using St

RE: Struts & menu

2003-12-01 Thread Witt, Mike (OH35)
I also use struts menu ... very easy to get started with. Once installed and configured, you can use a tag like: "" to add an upper level menu. -Original Message- From: Francesco Di Candia [mailto:[EMAIL PROTECTED] Sent: Monday, December 01, 2003 1:52 PM To: Struts Users Ma

Re: Struts & menu

2003-12-01 Thread Vic Cekvenich
Just today a new version of Struts Menu was released, that is what I use. .V Francesco Di Candia wrote: Hi all, i'm a Struts newbie and i'm trying to move my web-application from JSP/Servlets to Struts/Tiles. Someone of you can suggest my the best way to implement menu tile us

Struts & menu

2003-12-01 Thread Francesco Di Candia
Hi all, i'm a Struts newbie and i'm trying to move my web-application from JSP/Servlets to Struts/Tiles. Someone of you can suggest my the best way to implement menu tile using Struts & Tiles togheter? I need real experience mixing Struts & Tiles because I found something googling but real exper

[ANNOUNCE] Struts Menu 2.0 Released!

2003-12-01 Thread Matt Raible
link), the tag library will look in all scopes for a variable with the name "variableName". The example app has been updated to improve documentation. IMO, the Velocity templates is huge because it means "if it's possible with HTML" - it's possible with Struts

RE: Does Struts-Menu work with J2EE 1.2 (servlet 2.2 and JSP 1.1) lev el container?

2003-11-18 Thread Pingili, Madhupal
Nevermind. It's just a simple configuration issue. Got it resolved. > -Original Message- > From: Pingili, Madhupal > Sent: Monday, November 17, 2003 1:51 PM > To: 'Struts Users Mailing List' > Subject: Does Struts-Menu work with J2EE 1.2 (ser

Does Struts-Menu work with J2EE 1.2 (servlet 2.2 and JSP 1.1) lev el container?

2003-11-17 Thread Pingili, Madhupal
Hi All, Can I use struts-menu on a J2EE 1.2 level container? I just saw on their website "Dependencies" section that it needs servletapi 2.3. I am getting following error while trying to use struts-menu (struts-menu.sourceforge.net) on WebSphere 4.0.4 AE (J2EE 1.2 level container): Ser

RE: struts-menu and internationalization

2003-11-06 Thread Paul McCulloch
a key "user.locale" then you should use the tag like: Disclaimer: I don't use this functionality - I've just had a quick look at the code. Paul -Original Message- From: koen boutsen [mailto:[EMAIL PROTECTED] Sent: 06 November 2003 13:35 To: Struts Users Mailing List Sub

RE: struts-menu and internationalization

2003-11-06 Thread koen boutsen
wright language, but the menulabels stay in the original language. Thanks in advance Koen -- - Original Message - DATE: Thu, 6 Nov 2003 12:46:13 From: Paul McCulloch <[EMAIL PROTECTED]> To: 'Struts Users Mailing List' <[EMAIL PROTECTED]> Cc: >I

RE: struts-menu and internationalization

2003-11-06 Thread Paul McCulloch
I use struts menu, with the CoolMenu displayer, and everything works fine. Your config looks ok. What exactly isn't working? There is a struts-menu specific mailing list, which would be a more approriate place to ask for help. Paul -Original Message- From: koen boutsen [mailto:[

struts-menu and internationalization

2003-11-06 Thread koen boutsen
Has anyone used internationalization in the struts-menu ? If so, could you explain me how I can do it. I tried the following : menu-config.xml: and in listMenu.jsp: but this did not work. any help is very appreciated Koen Boutsen

RE: struts-menu

2003-10-23 Thread Edgar P Dollin
nal Message- > From: Adam Hardy [mailto:[EMAIL PROTECTED] > Sent: Thursday, October 23, 2003 6:26 AM > To: Struts Users Mailing List > Subject: struts-menu > > > > > Hi All, > I am writing the menu part of my app right now and I have > basically made > us

struts-menu

2003-10-23 Thread Adam Hardy
user is logged in & what role they have. Then I remembered that there is a struts-menu add-on at sourceforge, which I checked out. I was looking for anything that I might have forgotten that could pop up later and bite me. Obviously it wasn't exactly possible to find such unknown i

RE: struts menu

2003-09-26 Thread Matt Raible
It's probably best that you post this to the [EMAIL PROTECTED] project. -Original Message- From: Jan Van Stalle [mailto:[EMAIL PROTECTED] Sent: Friday, September 26, 2003 7:19 PM To: [EMAIL PROTECTED] Subject: struts menu Hello, Lately I saw a reference to struts menu on

struts menu

2003-09-26 Thread Jan Van Stalle
Hello, Lately I saw a reference to struts menu on this newsgroup; tried to use it but it seems complicated to put the bits and pieces together (classes, js files, ...) Does anyone have a link to documentation, besides the one which comes with the war file ?? Thanks, Jan

Struts-menu or not, dynamic menu from bean.

2003-09-24 Thread Johan Wasserman - CPX Mngd Services
Is there a menu builder, like struts-menu, available that will build a tree menu (and other menu types) from a bean? Anyone got struts-menu converted to get its data from a bean? Thanks in advance, Johan

Struts Menu and tiles definitions

2003-09-12 Thread koen boutsen
I want to use the struts menu, but instead of using the I want my user to be sent to a tiles definition. Is this possible with the Struts Menu ? If so, could you please tell me what adaptations I have to make ? Thanks Koen Boutsen

Struts Menu and tiles definitions

2003-09-12 Thread koen boutsen
I want to use the struts menu, but instead of using the I want my user to be sent to a tiles definition. Is this possible with the Struts Menu ? If so, could you please tell me what adaptations I have to make ? Thanks Koen Boutsen

RE: Struts Menu framework documentation

2003-09-12 Thread Matt Raible
The example application is the best documentation available. You can also checkout the demo on my site at http://raibledesigns.com/struts-menu. HTH, Matt -Original Message- From: Madhu Nair [mailto:[EMAIL PROTECTED] Sent: Friday, September 12, 2003 2:40 AM To: Struts Users Mailing List

Struts Menu framework documentation

2003-09-12 Thread Madhu Nair
Hi, Can someone point me to some documentation on using the Struts menu framework? Regards, Madhu - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: Does Struts Menu work with subapps?

2003-08-20 Thread Matt Raible
There's nothing specifically coded for subapps (to my knowledge). How is it *not* working in your subapp? -Original Message- From: Menke, John [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 20, 2003 3:31 PM To: Struts (E-mail) Subject: Does Struts Menu work with subapps? Wil

RE: Does Struts Menu work with subapps?

2003-08-20 Thread Edgar Dollin
It doesn't do url rewriting, but if you are using cookies I believe you will be OK. Edgar -Original Message- From: Menke, John [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 20, 2003 5:31 PM To: 'Struts (E-mail)' Subject: Does Struts Menu work with subapps? Will the

Re: Does Struts Menu work with subapps?

2003-08-20 Thread Mark Zeltser
Yes, I had to modify URL reference inside of javascript file (e.g. "url()") and define forward inside of main-struts-config.xml: Mark. "Menke, John" wrote: > Will the menu be able to handle links to subapps correctly? > > -jm > > -

Does Struts Menu work with subapps?

2003-08-20 Thread Menke, John
Will the menu be able to handle links to subapps correctly? -jm - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: Struts-menu

2003-06-23 Thread El Harouchi, Jaafar [IT]
er is appropriate, is the PermissionsAdapter. I don't use the role based permissioning, but load a PermissionsAdapter for each user, which contains the ids they have access to from the DB. Look at the Permissions example at: http://www.raibledesigns.com/struts-menu/index.jsp The examp

Re: Struts-menu

2003-06-23 Thread Mykola Ostapchuk
gt; Sent: Monday, June 23, 2003 12:11 PM Subject: RE: Struts-menu > The easiest thing to do is to use container-managed authentication - i.e. > Tomcat's JDBCRealm. Since you'll have to hard-code your roles in web.xml - > why not code them in menu-config.xml as well. > >

RE: Struts-menu

2003-06-23 Thread Raible, Matt
done it and it might take a bit to setup, but who has permissions to see what on a menu rarely changes (at least not on my projects). HTH, Matt -Original Message- From: Mykola Ostapchuk [mailto:[EMAIL PROTECTED] Sent: Monday, June 23, 2003 10:07 AM To: Struts Users Mailing List Subject: Stru

Struts-menu

2003-06-23 Thread Mykola Ostapchuk
Hello, I couldn't get any response from Struts-menu mail list, so I'm wandering if somebody here could help me. I'm new to struts-menu. I want to create a role-based expandable menu. I have an existing system with Roles DB table. How can I specify menu permissions for particular R

Re: [struts-menu] how to use URL rewriting ?

2003-06-19 Thread Nicolas De Loof
ext and then > pass it as a parameter for message resource replacement. > > If you are interested by my code look at the patch section of the > sourceforge account of Struts-Menu where I posted it as > RecursiveMenuDisplayer. Then look at > RecusrsiveMenuDisplayer.getDisplayStr

Re: [struts-menu] how to use URL rewriting ?

2003-06-19 Thread Malik Recoing
message resource replacement. If you are interested by my code look at the patch section of the sourceforge account of Struts-Menu where I posted it as RecursiveMenuDisplayer. Then look at RecusrsiveMenuDisplayer.getDisplayString(String key, String content, MenuComponent menu) to see how the variable

Re: [struts-menu] how to use URL rewriting ?

2003-06-19 Thread Nicolas De Loof
The problem we have is that URL are set in menu-config.xml, and struts-menu use it to set links in DHTML menu. Thank you for your help. Nico. > Try http://jakarta.apache.org/struts/userGuide/dev_html.html > > >From: "Nicolas De Loof" <[EMAIL PROTECTED]> > &

Re: [struts-menu] how to use URL rewriting ?

2003-06-19 Thread Ben Anderson
Try http://jakarta.apache.org/struts/userGuide/dev_html.html From: "Nicolas De Loof" <[EMAIL PROTECTED]> Reply-To: "Struts Users Mailing List" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" <[EMAIL PROTECTED]> Subject: [struts-menu] how to use

[struts-menu] how to use URL rewriting ?

2003-06-19 Thread Nicolas De Loof
Hi all, our application uses URL rewriting to track session (for some obscure reasons...) We use struts-menu taglib, and it doesn't "urlrewrite" links in menu items. >From what I've seen in struts-menu sources, it is not possible because MenuDisplayer >doesn't

RE: Struts Menu question

2003-06-18 Thread Raible, Matt
The latest and greatest version of struts-menu has a "roles" attribute that will hide menus if you're not in the list of roles. BTW - you'll probably get a quicker response for struts-menu on the struts-menu mailing list. ;-) Matt -Original Message- From: [EMAI

Re: Struts Menu question

2003-06-17 Thread harm
; <[EMAIL PROTECTED]> To "Struts Users Mailinglist" <[EMAIL PROTECTED]> cc Subject Struts Menu question Hi, i'm pretty new to Struts Menu and have one simple question before i start: is it possible to display menuitems depending on some conditions. e.g. only

RE: Struts Menu question

2003-06-17 Thread Filip Polsakiewicz
Cool. Thanks alot Filip > -Original Message- > From: El Harouchi, Jaafar [IT] [mailto:[EMAIL PROTECTED] > Sent: Tuesday, June 17, 2003 2:01 PM > To: 'Struts Users Mailing List' > Subject: RE: Struts Menu question > > > Filip, > You can definitely do

RE: Struts Menu question

2003-06-17 Thread El Harouchi, Jaafar [IT]
the Permissions example at: http://www.raibledesigns.com/struts-menu/index.jsp The example code is available through: http://sourceforge.net/projects/struts-menu/ I recommend users to start sending Struts Menu questions to: struts-menu-user (subscribe via SourceForge

Struts Menu question

2003-06-17 Thread Filip Polsakiewicz
Hi, i'm pretty new to Struts Menu and have one simple question before i start: is it possible to display menuitems depending on some conditions. e.g. only displaying an admin-menu if the user is logged on as Administrator? thanks in advance Filip Polsaki

RE: struts menu 1.2 question

2003-06-16 Thread Ashish Kulkarni
Thanx for all the info i will look into it Ashish --- "El Harouchi, Jaafar [IT]" <[EMAIL PROTECTED]> wrote: > Ashish, > Most of the displayers bundled in with struts-menu > go as many levels > down as defined. > The source code is available through: >

RE: struts menu 1.2 question

2003-06-16 Thread El Harouchi, Jaafar [IT]
Ashish, Most of the displayers bundled in with struts-menu go as many levels down as defined. The source code is available through: http://sourceforge.net/projects/struts-menu/ They are demoed at : http://www.raibledesigns.com/struts-menu/index.jsp The idea of having the menu go

RE: struts menu 1.2 question

2003-06-16 Thread Ashish Kulkarni
We have up to three levels down, but use our own > displayers/javascript. > How many levels down are you going? > -jaafar > > -Original Message- > From: Ashish Kulkarni > [mailto:[EMAIL PROTECTED] > Sent: Monday, June 16, 2003 11:47 AM > To: [EMAIL PROTECTED] > Su

RE: struts menu 1.2 question

2003-06-16 Thread Raible, Matt
There is a demo at http://raibledesigns.com/struts-menu and you can also download the latest CVS snapshot from here at http://raibledesigns.com/struts-menu/struts-menu.war HTH, Matt -Original Message- From: Ashish Kulkarni [mailto:[EMAIL PROTECTED] Sent: Monday, June 16, 2003 9:47 AM To

RE: struts menu 1.2 question

2003-06-16 Thread El Harouchi, Jaafar [IT]
We have up to three levels down, but use our own displayers/javascript. How many levels down are you going? -jaafar -Original Message- From: Ashish Kulkarni [mailto:[EMAIL PROTECTED] Sent: Monday, June 16, 2003 11:47 AM To: [EMAIL PROTECTED] Subject: struts menu 1.2 question Hi, has

struts menu 1.2 question

2003-06-16 Thread Ashish Kulkarni
Hi, has anyone used struts menu to build drop down menu to any level, I was trying to use coolmenu3 and it fails when i go to levels down, any suggestions, about it Ashish = A$HI$H __ Do you Yahoo!? SBC Yahoo! DSL - Now only $29.95 per month! http

RE: struts menu tutorial??

2003-06-13 Thread Raible, Matt
How about a demo site (http://raibledesigns.com/struts-menu) and a project site (http://sf.net/projects/struts-menu)? HTH, Matt -Original Message- From: Ashish Kulkarni [mailto:[EMAIL PROTECTED] Sent: Friday, June 13, 2003 10:00 AM To: [EMAIL PROTECTED] Subject: struts menu tutorial

struts menu tutorial??

2003-06-13 Thread Ashish Kulkarni
Hi, does any one have a struts menu tutorial or any web site or book where i can get it, please let me the location or book or if anyone has written one Ashish = A$HI$H __ Do you Yahoo!? Yahoo! Calendar - Free online calendar with sync to Outlook(TM). http

struts-menu-1.2 on Weblogic 7.0

2003-06-06 Thread Leon
Hi, I try the samples of struts-menu on Tomcat and it works fine. But, I got an error when I deploy it on weblogic 7.0. 610 [Thread-8] INFO validator.ValidatorPlugIn - Loading validation rules file from '/WEB-INF/validation.xml' <101216> It seems problem with loading menu-c

RE: Using query string in struts-menu entry

2003-03-26 Thread Richard Mixon
Thanks to both for the tip. I'll check the list, did not realize it existed. The struts-menu documentaton is sparse, but its such a neat tool. After more tracing and trying out the same URL from the browser address bar, I think what is happening is that my security URL-PATTERN is "

RE: Using query string in struts-menu entry

2003-03-26 Thread Edgar Dollin
ist' > Subject: Using query string in struts-menu entry > > > > I've been trying to use the following menu entries with no luck: > > > tooltip="Instructor Operations"> > toolTip="View/maintain status." >

Re: Using query string in struts-menu entry

2003-03-26 Thread Scott Sayles
method=inquire"). It does not seem to work at all. > > If I use the second method (just a simple ForwardAction that forwards to the JSP > page under WEB-INF/pages) everything works just fine. > > Should the query parametes work with struts-menu? > > Thanks - Richard > &g

Using query string in struts-menu entry

2003-03-25 Thread Richard Mixon
ards to the JSP page under WEB-INF/pages) everything works just fine. Should the query parametes work with struts-menu? Thanks - Richard - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Trying to use struts-menu with JBoss 3.0.6

2003-03-24 Thread James CE Johnson
I'm trying to try out struts-menu 1.2 with JBoss 3.0.6 with struts 1.1-RC1. When I deploy the sample webapp (webapps/struts-menu.war) Jboss complains about: 16:06:37,760 ERROR [Digester] Begin event threw exception java.lang.ClassNotFoundException: No ClassLoaders foun

RE: struts-menu used with or without Tiles?

2003-03-19 Thread Heligon Sandra
I also use Tiles with Struts menu in the tiles-def.xml I define the following entry: and the menu.jsp is the following: <%@ taglib uri="/WEB-INF/tld/struts-menu.tld" prefix="menu"%> Sandra --

RE: struts-menu used with or without Tiles?

2003-03-19 Thread Jack Zakarian
Hi Mick, I'm using StrutsMenu with Tiles. It works fine. Jack -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 19, 2003 11:22 AM To: [EMAIL PROTECTED] Subject: struts-menu used with or without Tiles? Is struts-menu to be used with or wi

struts-menu used with or without Tiles?

2003-03-19 Thread Mick . Knutson
Is struts-menu to be used with or without Tiles? == Thank You Mick Knutson Sr. Designer - Project Trust aUBS AG, Financial - Zürich Office: +41 (0)1/234.42.75 Internal: 48194 Mobile: 079.726.14.26 Visit our website at http://www.ubswarburg.com This message contains confidential

struts menu, how to keep menu expanded?

2003-03-18 Thread Mark Zeltser
Hi, I am setting up struts 1.1b3 with tiles, submodules and struts menu... Did anyone figured out how to keep struts menu expanded after forward to next page? Thanks, Mark. -- NOTICE: If received in error, please destroy and notify sender. Sender does not waive confidentiality or privilege

struts-menu with Struts 1.0.2

2003-03-18 Thread ashokd
Hi, struts-menu examples are possible with Struts 1.0.2 ?? In struts-config.xml (struts-menu example) I seen Plug Ins Configuration. I think that Plug Ins Configuration won't support with Struts 1.0.2 is it correct or I am wrong? Thanks in Advance, Ashok.D

Struts Menu

2003-03-18 Thread Ray Madigan
Can struts menu be made to operate as a single dropdown menu column as, for example, a column in a table, where it is only as wide as the the column that the menu resides in as opposed to the width of the frame it sits in. Thanks

RE: Struts-Menu onClick & forcing a submit

2003-03-17 Thread Edgar Dollin
:10 AM > To: 'Struts Users Mailing List' > Subject: RE: Struts-Menu onClick & forcing a submit > > > Hi Edgar, > > It's a user requirement to use a horizontal dropdown menu to > initiate actions. For example the menu would look like: > > [Home] [Acti

RE: Struts-Menu onClick & forcing a submit

2003-03-17 Thread Jack Zakarian
TECTED] Sent: Monday, March 17, 2003 10:49 AM To: 'Struts Users Mailing List' Subject: RE: Struts-Menu onClick & forcing a submit It is puzzling why you would be using the 'menu' instead of on page links or buttons to submit the form. There is no way to do it using struts-

RE: Struts-Menu onClick & forcing a submit

2003-03-17 Thread Edgar Dollin
It is puzzling why you would be using the 'menu' instead of on page links or buttons to submit the form. There is no way to do it using struts-menu selections w/o javascript as they do not render submit buttons. If your menu is within the block try onclick="document.s

Struts-Menu onClick & forcing a submit

2003-03-17 Thread Jack Zakarian
Hi, I am using Coolmenu4 and setting location to the URL to execute e.g. location="ServiceInvoice/save.do". I found that this does not force a submit so my action form is not populated. To force a submit I tried the onClick e.g. onClick=submitSave('ServiceInvoice/save.do'). This does n

Struts Menu

2003-03-14 Thread modena
Hi i've a simple question: there is a possibility to add parameter at link created with Struts Menu? for example i've an Action that add an attribute to request, i would like that this attribute is added to link generated from Struts Menu..it's possible? example of code:

Re: Struts-menu with Tiles

2003-03-13 Thread Will Etson
Edgar, Is there support in struts-menu for dynamic menus? I evaluated it for one of the applications I'm developing, but I got the impression that you can only render menus that are specified in a configuration file, and finally I used a javascript menu directly as I needed to rend

RE: Struts-menu with Tiles

2003-03-13 Thread Edgar Dollin
The only way to really understand struts-menu as it is now is to read the source. Of course it is just a couple of tags and a dozen classes so it is really pretty simple. The 'MenuBase' class has most of the attributes for each menu item and is helpful in understanding the menu-confi

RE: Struts-menu with Tiles

2003-03-13 Thread Pascal THIVENT
can find help > about syntax of the menu-config.xml file there is no dtd file > associated to this file in the struts-menu example. > I don't know which attributes are available in the or > tag. > > example of menu-co

RE: Struts-menu with Tiles

2003-03-13 Thread Heligon Sandra
It is perhaps a solution but I don't know where I can find help about syntax of the menu-config.xml file there is no dtd file associated to this file in the struts-menu example. I don't know which attributes are available in the or tag. example of menu-

RE: Struts-menu with Tiles

2003-03-13 Thread Pascal THIVENT
F/tld/struts-menu.tld" prefix="menu"%> > > > > > > > bundle="org.apache.struts.action.MESSAGE"> > > > > > > I can display a horizontal struts-menu. > But when

RE: Struts-menu with Tiles

2003-03-13 Thread Heligon Sandra
I defined the following entry in the tiles-def.xml. with coolmenu2.jsp: <%@ taglib uri="/WEB-INF/tld/struts-menu.tld" prefix="menu"%> I can display a horizontal struts-menu. But when the user select the command Logout I would like to call a

RE: Struts-menu with Tiles

2003-03-13 Thread Edgar Dollin
Not directly. There is a security mechanism which enables or disables individual items and menu groups. Edgar > -Original Message- > From: Jose Gonzalez Gomez [mailto:[EMAIL PROTECTED] > Sent: Thursday, March 13, 2003 9:00 AM > To: 'Struts Users Mailing List' >

RE: Struts-menu with Tiles

2003-03-13 Thread Matt Raible
I (at one time) used Tiles to build my menu, but found struts-menu to be much easier to configure. Out of the box, no, it does not support this. However, you could contribute a new TilesDisplayer - it is open source after all ;-) -Original Message- From: Heligon Sandra [mailto:[EMAIL

RE: Struts-menu with Tiles

2003-03-13 Thread Matt Raible
These types of questions should probably be asked on the struts-menu-user list. You can subscribe here: http://lists.sourceforge.net/lists/listinfo/struts-menu-user Yes, struts-menu integrates with Struts's RecourceBundle for i18n. It uses the title attribute as a key, and if the key i

Re: Struts-menu with Tiles

2003-03-13 Thread Jose Gonzalez Gomez
Edgar, Is there support in struts-menu for dynamic menus? I evaluated it for one of the applications I'm developing, but I got the impression that you can only render menus that are specified in a configuration file, and finally I used a javascript menu directly as I needed to ren

RE: Struts-menu with Tiles

2003-03-13 Thread Edgar Dollin
There is internationalization built into struts-menu. Edgar > -Original Message- > From: Heligon Sandra [mailto:[EMAIL PROTECTED] > Sent: Thursday, March 13, 2003 5:13 AM > To: '[EMAIL PROTECTED]'; '[EMAIL PROTECTED]' > Subject: RE: Struts-menu with

  1   2   >