Re: [OT] Re: Printing PDF Files in java

2003-12-04 Thread Julie . Huang
try datavision reporting tool http://datavision.sourceforge.net/ Prashanth.S [EMAIL PROTECTED] 12/04/2003 08:12 AM Please respond to Struts Users Mailing List To: Struts Users Mailing List [EMAIL PROTECTED] cc: Subject:Re: [OT] Re: Printing PDF Files in

datavision and struts

2003-11-18 Thread Julie . Huang
Does anyone use datavision as reporting tool together with struts? any examples? thank you. = = = = = = = = = == = = = = = == = = = = = = = == = = = = = == = = = = This transmittal and any attachments may contain confidential, privileged or sensitive information and is solely for the use of

Re: [FRIDAY] Free Dog.....

2003-10-17 Thread Julie . Huang
where is the picture? Julie Member of HSUS Martin Gainty [EMAIL PROTECTED] 10/16/03 07:33 PM Please respond to Struts Users Mailing List To: Struts Users Mailing List [EMAIL PROTECTED] cc: Subject:Re: [FRIDAY] Free Dog. Ditch the wife Keep the

Re: Calling a javascript function with the logic:iterate tag

2003-10-16 Thread Julie . Huang
try this: bean:define id=signal property=code/ html:link href='' onclick='%=closeWindowWithCode(+signal+)%' Frederic Dernbach [EMAIL PROTECTED] 10/16/03 09:57 AM Please respond to Struts Users Mailing List To: struts-user [EMAIL PROTECTED]

can not get bean property, help!!

2003-10-02 Thread Julie . Huang
Hi, I have an attribute called actionName in my actionformbean and I set it properly in my action class before forward to my jsp in the jsp I try to retrieve it like this: form action=nested:write property=actionName/ ... ... /form it always gives me Attribute value must be quoted error message

RE: can not get bean property, help!!

2003-10-02 Thread Julie . Huang
thank you, David, actually i tried single quote ' ...' before, however it doesnt work, always gave me Cannot retrieve mapping for action /' error Karr, David [EMAIL PROTECTED] 10/02/03 01:20 PM Please respond to Struts Users Mailing List To: Struts Users Mailing List

[maybeOT] multi-select drop down list value?

2003-09-30 Thread Julie . Huang
Hi, if I use multi-select option box in my action form, after I select some options and submit the form, the selected values are stored in a array of String. My question is : is that possible to get both selected values labels instead of only values? thanx! = = = = = = = = = == = = = = =

Re: logic:iterate understanding

2003-09-26 Thread Julie . Huang
use the propery ...in your case it is fields Prashanth.S [EMAIL PROTECTED] 09/26/03 09:04 AM Please respond to Struts Users Mailing List To: [EMAIL PROTECTED] cc: Subject:logic:iterate understanding Hi all, i found this tag while going through one of

[solved]Re: LabelValueBean - 3 fields?

2003-09-26 Thread Julie . Huang
thank you for all your useful input!!! you guys are brilliant!! [EMAIL PROTECTED] 09/24/03 04:12 PM Please respond to Struts Users Mailing List To: Struts Users Mailing List [EMAIL PROTECTED] cc: Subject:LabelValueBean - 3 fields? Hi, is it possible to

Re: Is there a way to find an Object type? Please help

2003-09-26 Thread Julie . Huang
Mathew, Manoj [EMAIL PROTECTED] 09/26/03 09:47 AM Please respond to Struts Users Mailing List To: Struts Users Mailing List [EMAIL PROTECTED] cc: Subject:Is there a way to find an Object type? Please help String fieldValue = (String)

LabelValueBean - 3 fields?

2003-09-24 Thread Julie . Huang
Hi, is it possible to store 3 fields in LabelValueBean instead of 2? i.e. value, label description? thanx! = = = = = = = = = == = = = = = == = = = = = = = == = = = = = == = = = = This transmittal and any attachments may contain confidential, privileged or sensitive information and is

Re: Multipage JDBC result

2003-09-18 Thread Julie . Huang
we are using orcale 8i, maybe it is the time to migrate to MySQL??:P thank you! Navneet Karnani [EMAIL PROTECTED] Sent by: news [EMAIL PROTECTED] 09/18/03 09:24 AM Please respond to Struts Users Mailing List To: [EMAIL PROTECTED] cc: Subject:Re:

Re: Multipage JDBC result

2003-09-17 Thread Julie . Huang
It seems that it pulled the whole JDBC resultset into the memory at one time(correct me if I am wrong at this point) since my data sets will be very huge, I don't think it is a good idea to pull down all the data to the session for paging. Any better solution /examples? very appreciated!! Julie

Re: application.properties file location

2003-08-14 Thread Julie . Huang
did you put it your struts-config file? i have the following in my struts-config.xml file: message-resources parameter=resources.ApplicationResources/ ( I put it into my resources directory) Samanth Athrey [EMAIL PROTECTED] 08/13/03 10:57 AM Please respond to Struts Users Mailing List

RE : How to display error message coming from DynaValidatorForm?

2003-08-14 Thread Julie . Huang
yes, it works fine. but I can't see any html:errors/ in your code? Laurent MARQUEZ [EMAIL PROTECTED] 08/14/03 09:24 AM Please respond to Struts Users Mailing List To: 'Struts Users Mailing List' [EMAIL PROTECTED] cc: Subject:RE : How to display error

Re: how to pass a jsp variable to a javascript function

2003-08-14 Thread Julie . Huang
I don't have javascript errors, the problem is %=tmpIndex% can't be translated into 0,1,2,. in javascript, only the String%=tmpIndex%. Adam Hardy [EMAIL PROTECTED] 08/07/03 04:32 PM Please respond to Struts Users Mailing List To: Struts Users Mailing List [EMAIL

how to pass a jsp variable to a javascript function

2003-08-14 Thread Julie . Huang
Hi All, Can anyone suggest how to pass a jsp variable to a javascript function correctly? It is in a nested:iterate block that has an indexId=tmpIndex. what I would like to do is to have the 'y%=tmpIndex%' variable pass into my JavaScript function.It seems like the server side %=tmpIndex%

RE: how to pass a jsp variable to a javascript function

2003-08-14 Thread Julie . Huang
Thank you very very much!! It works perfect !!! Julie Steve Armstrong [EMAIL PROTECTED] 08/07/03 10:25 PM Please respond to Struts Users Mailing List To: Struts Users Mailing List [EMAIL PROTECTED] cc: Subject:RE: how to pass a jsp variable to a

Re: iterate over collection a show the inner collection as html:select - how ?

2003-08-14 Thread Julie . Huang
I think something wrong with your selection code. I assume you want to present a selection of email list. try the following: [CODE] logic:iterate id=outMsgList name=OUTBOX tr class=tablebody td align=left == change to : html:select property=email html:select property=outMsgList ==