Re: Menus

2009-04-20 Thread Lukasz Lenart
2009/4/20 abhishek reddy : > can anyone let me know how to build menus in struts? Struts Menu [1] [1] http://struts-menu.sourceforge.net/ Regards -- Lukasz http://www.lenart.org.pl/ - To unsubscribe, e-mail: user-unsub

Re: Menus

2009-04-20 Thread Dave Newton
abhishek reddy wrote: can anyone let me know how to build menus in struts? That's a rather nebulous question. What kind of menu do you want? Why not just use one of the million existing menu solutions out there? Dave ---

Menus

2009-04-20 Thread abhishek reddy
hi everyone, can anyone let me know how to build menus in struts? -- Abhishek

Re: [s2] workflow/process question regarding menus and preferences

2007-11-26 Thread Martin Gainty
D]> To: Sent: Monday, November 26, 2007 3:15 PM Subject: [s2] workflow/process question regarding menus and preferences > > I'm building a S2 application and want to add the following: > > 1) Menus and sub-menus, based on the user's rights (session) > 2) UI preferences (

[s2] workflow/process question regarding menus and preferences

2007-11-26 Thread Eric Martin
I'm building a S2 application and want to add the following: 1) Menus and sub-menus, based on the user's rights (session) 2) UI preferences (application) I want the menu items to be determined after login / before rendering of the page, and placed in the session. And for UI prefere

Dynamic menus

2007-02-20 Thread janbrito
Hi, I'm building a web application and I would like to know what would be the best approach to create dynamic menus (data comming from database). Thanks -- View this message in context: http://www.nabble.com/Dynamic-menus-tf3262000.html#a9066200 Sent from the Struts - User mailing

Re: Struts Tiles question re menus

2006-12-12 Thread Antonio Petrelli
Adam Gordon ha scritto: The place we would do this is in a request listener class we have that currently, amongst other things, creates the entire menu system for the user. You can use also a Controller class to create your menu items, and associate it to your definition(s), I the code will b

RE: Struts Tiles question re menus

2006-12-12 Thread Asthana, Rahul
Users Mailing List Subject: Re: Struts Tiles question re menus Rahul- After reading 5.2.2, I can make it work using that structure, however I believe it defeats the original intent of Tiles because it would require me to have a n^2 tiles definitions for each scenario where n is the number of

Re: Struts Tiles question re menus

2006-12-12 Thread Adam Gordon
around with your tiles controller idea and reading the relevant section in that PDF, I defined my own tiles controller for that module and can retrieve the list of menu items for any tiles definition. Then, I can iterate over the menu items and make invisible any menus that are not supposed to

RE: Struts Tiles question re menus

2006-12-12 Thread Asthana, Rahul
lto:[EMAIL PROTECTED] Sent: Tuesday, December 12, 2006 3:58 PM To: Struts Users Mailing List Subject: Struts Tiles question re menus Hi- We're using Tiles to define submenu items (in a putList) for menu we have in our web app. We're using a custom menu object that has a visibility fla

Struts Tiles question re menus

2006-12-12 Thread Adam Gordon
ts of tiles and the placement of these pages and would have to think about how to do this. The place we would do this is in a request listener class we have that currently, amongst other things, creates the entire menu system for the user. Basically, we iterate over all the modules constru

RE: Tiles & menus

2006-11-22 Thread Strachan, Paul
what is the trouble?...all looks good to me do you need to include: classtype="org.apache.struts.tiles.beans.SimpleMenuItem" ? From: Java Programmer [mailto:[EMAIL PROTECTED] Sent: Thu 23/11/2006 12:07 AM To: user@struts.apache.org Subject: Til

Tiles & menus

2006-11-22 Thread Java Programmer
Hello, I have some troubles with finding examples of using SimpleMenuItem and tags within , so far I did menu like this: - part of tiles-def.xml: - part of jsp *tile* "> So first I import attribute

Re: modules & menus

2006-05-30 Thread Joe Germuska
At 3:50 PM -0400 5/30/06, Brian Long wrote: Hi folks - appreciate any input on this one: I have a menu in a Struts 1.2.9 modularized app. The menu has links to some jsps and some actions. When the app is launched, the links all work. However, once I've navigated into a module, the links all g

modules & menus

2006-05-30 Thread Brian Long
Hi folks - appreciate any input on this one: I have a menu in a Struts 1.2.9 modularized app. The menu has links to some jsps and some actions. When the app is launched, the links all work. However, once I've navigated into a module, the links all get prefixed with that module, and the links d

RE: Multiple Drop Down Menus

2005-12-21 Thread Frank W. Zammetti
x27;t know of an > example that is closer to this scenario have you? > > Rgds > > Kevin > > > -Original Message- > From: Frank W. Zammetti [mailto:[EMAIL PROTECTED] > Sent: 21 December 2005 16:13 > To: Struts Users Mailing List > Cc: 'Struts Users Maili

RE: Multiple Drop Down Menus

2005-12-21 Thread Leahy, Kevin
x27;t know of an example that is closer to this scenario have you? Rgds Kevin -Original Message- From: Frank W. Zammetti [mailto:[EMAIL PROTECTED] Sent: 21 December 2005 16:13 To: Struts Users Mailing List Cc: 'Struts Users Mailing List' Subject: RE: Multiple Drop Down Men

RE: Multiple Drop Down Menus

2005-12-21 Thread Frank W. Zammetti
i [mailto:[EMAIL PROTECTED] > Sent: 20 December 2005 20:33 > To: Struts Users Mailing List > Cc: user@struts.apache.org > Subject: Re: Multiple Drop Down Menus > > AJAX is your friend! (as long as Javascript is OK of course). > > Take a look here: > > http://javawebpa

RE: Multiple Drop Down Menus

2005-12-21 Thread Leahy, Kevin
Frank, Which download has the cookbook? Kevin -Original Message- From: Frank W. Zammetti [mailto:[EMAIL PROTECTED] Sent: 20 December 2005 20:33 To: Struts Users Mailing List Cc: user@struts.apache.org Subject: Re: Multiple Drop Down Menus AJAX is your friend! (as long as Javascript

Re: Multiple Drop Down Menus

2005-12-21 Thread Raghu Kanchustambham
Try Struts-Layout has some options for doing "related" dropdowns. You may want to check it and avoid a lot of javascript coding. HTH, Raghu On 12/21/05, Neil Erdwien <[EMAIL PROTECTED]> wrote: > > If the amount of data needed for drop down B isn't large, I'd load it > into Javascript objects wh

Re: Multiple Drop Down Menus

2005-12-20 Thread Li
set a flag represented selected or not (can be a boolean, or an arraylist that holds all selected values), put into your global bean holder (if you have, this is a java bean simple holds all objects that would be created and used during the session), then you can use logic tag to check the flag (lo

Re: Multiple Drop Down Menus

2005-12-20 Thread Frank W. Zammetti
You have two choices... DOM manipulation, or DIV replacement. The former can get a little complex, the later is pretty straight-forward: color size function doit(obj) { s = ""; type = obj.value; s += "