Back and Refresh Button Effect

2004-01-15 Thread Gede Indrawan
Hi all, In building struts web appl, what are the deep concern we must have to the browser back and refresh button effect? TIA -GI. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Back and Refresh Button Effect

2004-01-15 Thread Gede Indrawan
: Back and Refresh Button Effect pragma no cache, transaction tokens. -Original Message- From: Gede Indrawan [mailto:[EMAIL PROTECTED] Sent: Thursday, January 15, 2004 3:01 AM To: Struts Users Mailing List Subject: Back and Refresh Button Effect Hi all, In building struts

Data transfer From Struts to JavaScript

2003-12-18 Thread Gede Indrawan
Hi All, I have jsp code below try to implement dynamic dropdown list I utilize javascript code Dynamic Option List from http://www.mattkruse.com/javascript/ I want 4 line hard code below (from that jsp code) listB.addOptions(1,bpp2,7,bpp3,8); listB.addOptions(2,bdl1,4,bdl3,5);

Re: Drop-down-list

2003-12-02 Thread Gede Indrawan
can directly do it using javascript, refer to the below URL for a detailed example http://www.jguru.com/faq/view.jsp?EID=923880 F. - Original Message - From: Gede Indrawan [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Monday, December 01, 2003 12:39 PM

Drop-down-list

2003-12-01 Thread Gede Indrawan
Hi all, In case I have 2 drop-down-lists and the second drop-down-list content changed automatically if we select certain item at the first one, how can I do it in the struts world? Any references to this case? Any code example? I am totally blind to this case.. best regards -GI.

Re: MySql BasicDataSource Connection

2003-11-20 Thread Gede Indrawan
, but of course a useful feature. Thanks, Oliver On Mon, 2003-11-17 at 23:11, Gede Indrawan wrote: I use data-source defintion below and no problem with it data-source type=org.apache.commons.dbcp.BasicDataSource set-property property=driverClassName value=org.gjt.mm.mysql.Driver/ set

Re: MySql BasicDataSource Connection

2003-11-20 Thread Gede Indrawan
After short investigation, if we don't specify BasicDataSource parameters belos at our struts-config.xml, default will be maxActive = 8 maxIdle = 8 minIdle = 0 all values at org.apache.commons.pool.impl.GenericObjectPool cmiiw best regards -GI. - Original Message - From: Gede Indrawan

Re: MySql BasicDataSource Connection

2003-11-18 Thread Gede Indrawan
of driverClassName, so the BasicDataSource couldn never locate my driver. When I fixed that, it fired right up. Thanks again!! Brent -Original Message- From: Gede Indrawan [mailto:[EMAIL PROTECTED] Sent: Monday, November 17, 2003 10:11 PM To: Struts Users Mailing List Subject: Re

Re: MySql BasicDataSource Connection

2003-11-17 Thread Gede Indrawan
I use data-source defintion below and no problem with it data-source type=org.apache.commons.dbcp.BasicDataSource set-property property=driverClassName value=org.gjt.mm.mysql.Driver/ set-property property=url value=jdbc:mysql://localhost/telkomsel/ set-property property=maxCount