Thanks

2003-09-05 Thread Mehta, Chirag (IT)
Hello guys, My internship had finished and I would just like to thanks everyone who has helped me in this user group. I really appriecate it. Good luck for the future of Struts and the taglibs. It a great technology and hope it goes far. Regards, Chirag -- NOTICE: If received in

Hash Backed Forms and the displaytag lib

2003-09-02 Thread Mehta, Chirag (IT)
Is it possible to use the displaytag lib with a collection of map-backed or list-backed actionforms? If so how would you do it? Thanks Chirag -- NOTICE: If received in error, please destroy and notify sender. Sender does not waive confidentiality or privilege, and use is prohibited.

Built version of Displaytaglib 0.85 or 0.9

2003-09-02 Thread Mehta, Chirag (IT)
Hello, I really need some help and would be extremly greatful if someone could send me a built binary version of the Displaytaglib with the JVM 1.3 patches applied (no dependency on StringBuffer append) or v0.9 if that had the patches built in. For some reason I am getting: [style] BUILD

JVM 1.3.1 and taglibs

2003-09-01 Thread Mehta, Chirag (IT)
Hello, I really really need some help on this one. I have JVM 1.3.1 installed on my server and the displaytag lib will not run. It gives me the follwing error: java.lang.NoSuchMethodError at org.apache.taglibs.display.TableTag.doEndTag(TableTag.java:695) at

2 Parameters

2003-08-29 Thread Mehta, Chirag (IT)
Does anyone know if it possible to pass 2 parameters using the display tag? Current code: display:column property=sqltitle title=SQL Name href=GIM2Results.do paramId=sqltitle paramProperty=sqltitle/ Produces link: http://localhost:8080/wact/pages/GIM2Results.do?testsqlscript=select

Applying Taglib Patches

2003-08-29 Thread Mehta, Chirag (IT)
I've just downloaded a patch for a taglib and was wondering how to apply. It comes with a new tld file which I assume you just replace the old one with. It also comes with a .java file. What am I meant to do with that? Its a patch for the Display taglib. Thanks Chirag -- NOTICE: If

Get URL

2003-08-28 Thread Mehta, Chirag (IT)
Hi, I was wondering if anyone could help. I never had a need for this but i do no and I dunno how to go about it. Basically I'm using the display taglib to create a table. I want to only put 10 item on one page and have the table automatically page number the table. My code is: display:table

Get URL

2003-08-28 Thread Mehta, Chirag (IT)
Hi, I was wondering if anyone could help. I never had a need for this but i do no and I dunno how to go about it. Basically I'm using the display taglib to create a table. I want to only put 10 item on one page and have the table automatically page number the table. My code is: display:table

RE: Get URL

2003-08-28 Thread Mehta, Chirag (IT)
property=lastused title=Last Used / /display:table This should work. robert -Original Message- From: Mehta, Chirag (IT) [mailto:[EMAIL PROTECTED] Sent: Thursday, August 28, 2003 6:32 AM To: [EMAIL PROTECTED] Subject: Get URL Hi, I was wondering if anyone could

Display Taglib

2003-08-28 Thread Mehta, Chirag (IT)
Has anyone had experience using the Display taglib with ServletExec. I'm getting the following error on the jsp page with no error in the log file. It used to work fine using Tomcat ServletException in:GIM2ResultsContents.jsp] null' Please help. Thanks Chirag -- NOTICE: If received in

RE: Display Taglib

2003-08-28 Thread Mehta, Chirag (IT)
To: Struts Users Mailing List Subject: RE: Display Taglib I'm using the Display Taglib with ServletExec and haven't had any issues. What version are you using? robert -Original Message- From: Mehta, Chirag (IT) [mailto:[EMAIL PROTECTED] Sent: Thursday, August 28, 2003 10:07 AM

HTML

2003-08-28 Thread Mehta, Chirag (IT)
I know this is more of a HTML question but considering everyone in this mail group is fab! I have a HTML table that is dynamically generated using: logic:present name=Results div id=blah2 style=width:700px; height:300px; overflow-y:scroll;overflow-x:scroll;border:'0px solid #00'; table

Display Tag and Collections

2003-08-18 Thread Mehta, Chirag (IT)
Hi, Does anyone know if it possible to use the Display taglib over a 2D collection (a collection where each element is a collection of row data as a String array). This is my current code and I want to convert it so I can use the Display taglib. table tr logic:iterate name=Results

Display Tag and Collections

2003-08-18 Thread Mehta, Chirag (IT)
Someone please help me on this one! :( -Original Message- From: Mehta, Chirag (IT) Sent: 18 August 2003 11:52 To: [EMAIL PROTECTED] Subject: Display Tag and Collections Hi, Does anyone know if it possible to use the Display taglib over a 2D collection (a collection where each

RE: Dumbo Question

2003-08-15 Thread Mehta, Chirag (IT)
. the ActionForm should be in session scope with that name. Q Mehta, Chirag (IT) wrote: My code is: tr logic:iterate name = Results property=ColumnNames id=columnName tdbean:write name=columnName//td /logic:iterate /tr Results.java is the name of an ActionForm which has my

RE: Dumbo Question

2003-08-15 Thread Mehta, Chirag (IT)
Ok. Got a step further but spent the last 2 hours trying to figure this out. This is my code in my JSP page. I get an error of org.apache.jasper.JasperException: Cannot find bean rowData in any scope. The second logic iterate is on a 2D Collection. It will display tbdata if I ask it too but the

RE: Dumbo Question

2003-08-15 Thread Mehta, Chirag (IT)
a collection of objects (rowData) Verify that your data looks like that...if your data looks right, then I'm stumped as your code looks right. Nick Mehta, Chirag (IT) [EMAIL PROTECTED]To: Struts Users Mailing List [EMAIL PROTECTED

RE: Dumbo Question

2003-08-15 Thread Mehta, Chirag (IT)
(tbdata). - Each object in the tbdata collection is itselt a collection of objects (rowData) Verify that your data looks like that...if your data looks right, then I'm stumped as your code looks right. Nick Mehta, Chirag (IT) [EMAIL PROTECTED

RE: Dynamically generating Action Forms

2003-08-14 Thread Mehta, Chirag (IT)
//td /logic:iterate /tr logic:iterate name=dataRows id=row tr logic:iterate name=row id=columnData tdbean:write name=columnData//td /logic:iterate /tr /logic:iterate Hope this helps... Nick Mehta, Chirag (IT) [EMAIL PROTECTED

Dynamically generating Action Forms

2003-08-14 Thread Mehta, Chirag (IT)
Hello, Does anyone know if there is a way of generating an Action form from the resultset's column metadata? I have a jsp that allows the user to enter SQL statements. I do not know what thier query will be so from the resultset I would like to create action forms according to the columns to

Dumbo Question

2003-08-14 Thread Mehta, Chirag (IT)
Sorry, heres another newbie question. I have a bean that stores collections of data that have been retrieved from a database. When I try and logically iterate these collections on my JSP page, it says Cannot find bean Results in any scope But my bean does exist and println its results on my

Best way to retrieve data from a datasource

2003-08-14 Thread Mehta, Chirag (IT)
Following on to a earlier question, what is the reccomended way of retrieving a ResultSet and passing it to be viewed on a JSP page? I have seen it done using ProcessBeans, Array Lists, ResultLists, Collection and it all seems a bit confusing. In my app, the user enters a SQL query so I have no

RE: Dumbo Question

2003-08-14 Thread Mehta, Chirag (IT)
on From: Mehta, Chirag (IT) [EMAIL PROTECTED] Reply-To: Struts Users Mailing List [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: Dumbo Question Date: Thu, 14 Aug 2003 15:58:48 +0100 Sorry, heres another newbie question. I have a bean that stores collections of data that have been retrieved

Returning a result set

2003-08-14 Thread Mehta, Chirag (IT)
Hello, I am developing an application where the user can run SQL queries from a text area on a JSP page and the application returns the results. As I have no idea what the user will input and the database they will be connected has many gigs of data, with plenty of column, how should i handle

RE: Returning a result set

2003-08-07 Thread Mehta, Chirag (IT)
Thanks for that. So what would be the best way of displaying such data on a JSP page? Would logic iterate be ok for such large amounts of data? -Original Message- From: Mehta, Chirag (IT) Sent: 07 August 2003 09:49 To: [EMAIL PROTECTED] Subject: Returning a result set Hello, I am