Re: Tag inside a cell.

2005-04-05 Thread Marcelo Epstein
; } Another alternative is to include   in empty table cells See http://www.w3.org/TR/REC-CSS2/tables.html#empty-cells -- Jeff On Apr 5, 2005 10:23 AM, Marcelo Epstein <[EMAIL PROTECTED]> wrote: Hi, When the attribute of an object is null, I always lost the border of the table.What is a good

Tag inside a cell.

2005-04-05 Thread Marcelo Epstein
Hi, When the attribute of an object is null, I always lost the border of the table.What is a good way to avoid it? ex: (when y = null, border seems strange!) Thanks in advance. Marcelo - To unsubscribe, e-mail: [EMAIL PROTE

Menu

2005-02-16 Thread Marcelo Epstein
Hi, I am developing a software for a company using struts. What is the best way to create the menus to navigate in the system? JSF? Simple HTML with javascript? Tag libraries? Thanks in advance, Marcelo Epstein - To unsubscribe

Re: Format Phone numbers using bean:write

2004-08-03 Thread Marcelo Epstein
AIL PROTECTED]> Sent: Tuesday, August 03, 2004 5:58 PM Subject: Re: Format Phone numbers using bean:write > Did you try to put the () in '' as in > > ="'('###')'###'-'"/> > > just a gue

Re: Format Phone numbers using bean:write

2004-08-03 Thread Marcelo Epstein
g bean:write > -Original Message- > From: Marcelo Epstein [mailto:[EMAIL PROTECTED] > Sent: Tuesday, August 03, 2004 11:35 AM > To: Struts Users Mailing List > Subject: Format Phone numbers using bean:write > > > Hi all, > > Is it possible to format a ph

Format Phone numbers using bean:write

2004-08-03 Thread Marcelo Epstein
Hi all, Is it possible to format a phone number stored in a String using tag ? I can format dates, but not Strings. Thanks in advance, Marcelo - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAI

Re: [OT] Soccer portal released goal.com

2004-06-17 Thread Marcelo Epstein
I can´t believe, Goal.com don´t talk about the best soccer around the World. I sugest u to write about BRAZILIAN SOCCER. Maybe u will find how many "Ronaldo´s" we have here! 8-) GOOD JOB, Marcelo - Original Message - From: "Andrew Hill" <[EMAIL PROTECTED]> To: "Struts Users Mailing List

Re: Action messages.

2004-06-03 Thread Marcelo Epstein
f > percent complete or something like that to display back to the browser. > > Obviously, if faking it is good enough, as it usually is in these cases, > that's by far the better choice. > > Frank > > >From: "Marcelo Epstein" <[EMAIL PROTECTED]> > &

and get...()

2004-06-03 Thread Marcelo Epstein
Hi, When I use if the value is null, the tag returns "". But, when I try, for example, System.out.print(xxx.getProperty()) inside an Action and the property is null. It returns the String "null". What is the best practice to avoid printing "null" ? I have to check all values before printing? I

Action messages.

2004-06-03 Thread Marcelo Epstein
Hi, I have a Action that takes 10s to execute. Is there any way to display messages in the browser during execution? Thx, Marcelo - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Manual reload struts-config.xml

2004-05-04 Thread Marcelo Epstein
Hi, How do I reload struts configuration file manualy without context restart? Thanks in advance, Marcelo - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Reporting Tool.

2004-04-14 Thread Marcelo Epstein
Hi, I need to create some reports in my application. Which is the best tool available to work with Struts? I read about JasperReports, is it the way to go with Struts? Thanks in advance. Marcelo - To unsubscribe, e-mail: [EMAIL

Re: Connection Pooling (How i use...)

2004-04-07 Thread Marcelo Epstein
Hi all, Closing all ResultSets, Statements, Connection in the finally block fixed my app that stops crashing. Thanks everybody... Marcelo On Wed, 07 Apr 2004 09:00:16 -0400, "Dean A. Hoover" <[EMAIL PROTECTED]> escreveu: > De: "Dean A. Hoover" <[EMAIL PROTECTED]> > Data: Wed, 07 Apr 2004 09:

Re: Connection Pooling - Monitor

2004-04-06 Thread Marcelo Epstein
e URL > that you are using? You should set autoReconnect=true > in the URL. > > -Richard > > > > --- Marcelo Epstein <[EMAIL PROTECTED]> wrote: > > > > Is it possible to know how many connection are in > > the pool ? Is there any monitor available?

ORM Tools (Ibatis, Hibernate, OJB....)

2004-04-06 Thread Marcelo Epstein
Hi, Thanks everybody! Now I am convinced to use an ORM tool. The big problem is whitch one? Hibernate? Ibatis ?OJB? Whitch one is preferable to use with Struts?? Macelo Epstein On Tue, 06 Apr 2004 11:29:21 -0600, "Larry Meadors" <[EMAIL PROTECTED]> escreveu: > De: "Larry Meadors" <[EMAIL PRO

Connection Pooling - Monitor

2004-04-06 Thread Marcelo Epstein
Is it possible to know how many connection are in the pool ? Is there any monitor available? On Tue, 6 Apr 2004 14:15:34 -0300, "Marcelo Epstein" <[EMAIL PROTECTED]> escreveu: > De: "Marcelo Epstein" <[EMAIL PROTECTED]> > Data: Tue, 6 Apr 2004 14:15:

Re: Connection Pooling (How i use...)

2004-04-06 Thread Marcelo Epstein
Struts Users Mailing List <[EMAIL PROTECTED]> > Assunto: Re: Connection Pooling (How i use...) > > This your problem: closing the connection in your try block. Move it to a finally > block.. > > Marcelo Epstein wrote: > > > I use the pool like this: (IS IT WRONG??

Re: Connection Pooling

2004-04-06 Thread Marcelo Epstein
oReconnect=true parameter to pass through with the > url, but i think thats bollocks or at least didn't work with version3 > mysql drivers. > > On 6 Apr 2004, at 18:08, Marcelo Epstein wrote: > > > Hi, > > > > I have just started using Connection Pooling

Re: Connection Pooling (How i use...)

2004-04-06 Thread Marcelo Epstein
I use the pool like this: (IS IT WRONG??) I think the connection is being closed.. try { Context ctx = new InitialContext(); if (ctx == null) throw new Exception("Boom - No Context"); DataSource ds = (DataSource) ctx.lookup("java:comp/env/jdbc/EasyDB");

Connection Pooling

2004-04-06 Thread Marcelo Epstein
Hi, I have just started using Connection Pooling in my app (Tomcat, Struts, DBCP, Mysql) . It woks for about 20 hours and stop working until tomcat restart. I get this exception: org.apache.commons.dbcp.SQLNestedException: Cannot get a connection, pool exhausted, cause: java.util.NoSuchElemen

Dealing with large ResultSets??

2004-03-29 Thread Marcelo Epstein
Hi, How can I get more than 1000 rows of a table. I am using display tag and I really don´t want 1000+ Objects. What is the best practice to do that? Does ORM models like Hibernate, Ibatis and others can help me? Thanks in advance. Matiro. --