Re: Form data lost [S 1.3.8]

2012-07-31 Thread Anjib
aren't default scope is session?? i am wondering if I am missing any other point other than scope. On 7/31/2012 6:20 PM, Paul Benedict wrote: I think you're losing the data because you're unintentionally creating a new form. Make sure both actions refer to the form with the same scope. On Tue

Re: Form data lost [S 1.3.8]

2012-07-31 Thread Paul Benedict
I think you're losing the data because you're unintentionally creating a new form. Make sure both actions refer to the form with the same scope. On Tue, Jul 31, 2012 at 11:09 AM, Anjib Mulepati wrote: > Hi All, > > I am using large form to input data. I have some validation code as well as > I ha

Re: Form data lost [S 1.3.8]

2012-07-31 Thread Anjib Mulepati
I mean when form data are invalid, user get the message on top of the form but all data in filed get lost. It shows blank form with error message. i want to show previously entered data so that user can correct only invalid field. On 7/31/2012 3:09 PM, Martin Gainty wrote: could you define yo

Form data lost [S 1.3.8]

2012-07-31 Thread Anjib Mulepati
Hi All, I am using large form to input data. I have some validation code as well as I have condition where if something goes wrong in execution of action it will take the user back to the form. My problem is when validation fail or form returned from action execution all my form data are lost.

RE: Struts 1 : Arabic Characters Issue

2012-07-31 Thread Martin Gainty
i believe you will need to implement a character set which implements DBCS at the server which hosts your struts webapp and delivers (Unicode) using DBCS as a response. Once you are able to input the characters from the selected character-set and language-locale and display the characters from

Re: client sided applications

2012-07-31 Thread Lukasz Lenart
2012/7/31 Martin Rosellen : > Hi@all, > > right now I am trying to implement a webapp that should do data cleaning and > analysis. I already have a prototype written in Java for the cleaning part > and it is not using struts yet. > > Because I do not want to hire a big server I tend to let the clie

Re: Struts 1 : Arabic Characters Issue

2012-07-31 Thread Eric Tse
How did you output your message label in jsp? Eric@mobile On 31 Jul, 2012, at 1:31 PM, MAQS Developer - To unsubscribe, e-mail: user-unsubscr...@struts.apache.org For additional commands, e-mail: user-h...@struts.apache.org

Re: client sided applications

2012-07-31 Thread Maurizio Cucchiara
First or later your data will send through the application server, in this case struts could help you. Maybe the rest and json plugins are the best candidate for your use case. Since struts2 is able to handle json and rest architecture, every js client library and every related tutorial could help

client sided applications

2012-07-31 Thread Martin Rosellen
Hi@all, right now I am trying to implement a webapp that should do data cleaning and analysis. I already have a prototype written in Java for the cleaning part and it is not using struts yet. Because I do not want to hire a big server I tend to let the client do most of the calculating. Is