Re: Remove [EMAIL PROTECTED]

2008-10-22 Thread stanlick
PLEASE BAG THIS USER!!! On Tue, Oct 21, 2008 at 12:24 PM, Nils-Helge Garli Hegvik <[EMAIL PROTECTED]>wrote: > I agree. > > On Mon, Oct 13, 2008 at 10:49 AM, Lukasz Lenart > <[EMAIL PROTECTED]> wrote: > > Hi, > > > > Could someone remove this email from list? It's very annoying ;-( > > > > > >

The Struts dispatcher cannot be found

2008-10-22 Thread stanlick
I started a new Struts 2 project today with Tiles and Spring. My default result type is "tiles" and everything works alright as long as you don't look at the console! For some strange reason there are numerous messages like the following: The Struts dispatcher cannot be found. This is usually

Re: [ANN] VTD-XML extended edition released

2008-10-22 Thread jimmy Zhang
It uses mem-map so the file are not load in memory in case it is too big. - Original Message - From: "Mead Lai" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" Sent: Tuesday, October 21, 2008 7:45 PM Subject: Re: [ANN] VTD-XML extended edition released supports 256 GB max file si

[ANN] Struts 2.0.12 GA release available

2008-10-22 Thread Rene Gielen
The Apache Struts group is pleased to announce that Struts 2.0.12 is available as a "General Availability" release. The GA designation is our highest quality grade. Apache Struts 2 is an elegant, extensible framework for creating enterprise-ready Java web applications. The framework is designed to

RE: TAG embeded inside TAG struts 1

2008-10-22 Thread gcj
Could you use JSTL to accomplish the same thing? For example, -Original Message- From: D'Ottavio Alessandro [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 22, 2008 10:57 AM To: user@struts.apache.org Subject:

TAG embeded inside TAG struts 1

2008-10-22 Thread D'Ottavio Alessandro
Hallo I need to set dinamically poperties of the TAG struts Example I have a easy form like this: I wont that read-only properties assume value true or false dynamically using a specific bean that represent for me a mask on with field are read-only a

RE: More html:form TAG in one page for struts 1

2008-10-22 Thread Kawczynski, David
If the functionality provided by the 2 different classes is similar: You could use a dispatchaction instead of two different Action classes. Just give the submit buttons different values. EG: Public MyDispatchAction extends DispatchAction { void dispatchMethod(mapping, form, reque

Re: R: More html:form TAG in one page for struts 1

2008-10-22 Thread Antonio
2008/10/22 D'Ottavio Alessandro <[EMAIL PROTECTED]>: > if I create the FormBeanA associate with the ActionA (specific > properties with getter and setter and validate specific only for that > properties requested by function A need) struts automatically will > valorised the bean using the setter pr

R: More html:form TAG in one page for struts 1

2008-10-22 Thread D'Ottavio Alessandro
Ciao Antonio, Actually I'm using 2 different actions and in both the action I have associated the same formBean, but you gave me one idea: if I create the FormBeanA associate with the ActionA (specific properties with getter and setter and validate specific only for that properties requested by

Re: More html:form TAG in one page for struts 1

2008-10-22 Thread Antonio
2008/10/22 D'Ottavio Alessandro <[EMAIL PROTECTED]>: > I have one page and one FormBean that is populated by the form but I > would like have 2 FormBean and 2 form associated at the same page Are you going to use 1 or 2 actions? Because you can associate only 1 form bean to 1 action, but the same

More html:form TAG in one page for struts 1

2008-10-22 Thread D'Ottavio Alessandro
Hi to all Sorry for my poor English I have one page and one FormBean that is populated by the form but I would like have 2 FormBean and 2 form associated at the same page Actually Form a logical point of view: My pages represent 2 different function, so there is one button for one fu

Re: Using Struts with Dojo vs GWT

2008-10-22 Thread Tim Jowers
We used scriptalicious in one product but have sorta standardized on jQuery too now for three others. Now as to the actual controls... some of us are leaning towards Yahoo UI because its datatable (datgrid) has the largest feature set such as being able to drag columns left or right of others. I'd

Re: Using Struts with Dojo vs GWT

2008-10-22 Thread Felipe Lorenz
Hi, In my projects ive been use Struts 2 with JQuery. Why JQuery? Lighweight, easy to learn and use and run it in all browsers... On Mon, Oct 20, 2008 at 5:28 AM, Wes Wannemacher <[EMAIL PROTECTED]> wrote: > I don't know if this is a question we can answer for you. Dojo has its > advantages and d

Re: [ANN] VTD-XML extended edition released

2008-10-22 Thread Mead Lai
T5440 Server is server, not pc. The common PC we have, is less than 4G memory. 2008/10/22 Paweł Wielgus <[EMAIL PROTECTED]> > Hi Mead, > yes there are, > just looking at the sun offer, T5440 Server -> 512G. > > Best greetings, > Paweł Wielgus. > > 2008/10/22 Mead Lai <[EMAIL PROTECTED]>: > > sup

Re: s2 Checkbox problem

2008-10-22 Thread Mead Lai
in the Action, you need a list; List checklist;//getter & setter then, you can get the fieldValue="Y" in the struts tag, from field "checklist" in the Action. and the value is the same value in html tag value="Y". On Wed, Oct 22, 2008 at 3:50 PM, Harden ZHU <[EMAIL PROTECTED]> wrote: > I have a

s2 Checkbox problem

2008-10-22 Thread Harden ZHU
I have a checkbox in jsp: , after html rendering it is shown as , that is good. But once a user selects the checkbox and submits the form, user.contactConfidential is set to true. However, on the database side the value should be stored as 'Y' or 'N'. Is there anyway that I can get user.contact