Replacing javascript without restart Tomcat

2005-07-19 Thread Doug Ly
Hi, Is there a way to replace _javascript_ files without restarting Tomcat servlet?   Thanks   --Doug   The information contained in this email may be confidential and/or legally privileged. It has been sent for the sole use of the intended recipient(s). If the reader of this mes

RE: Selective Component Display

2005-06-10 Thread Doug Ly
This is far better than my *traditional* method. I wrote a listener which will intervene at the render response step to determine whether a component should be rendered or not. Regards, --Doug -Original Message- From: Craig McClanahan [mailto:[EMAIL PROTECTED] Sent: Thursday, June 09, 20

RE: zip file distribution?

2005-03-09 Thread Doug Ly
Use 7-Zip. It should take care of everything. --Doug -Original Message- From: Sean Schofield [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 09, 2005 10:27 AM To: MyFaces Discussion Subject: Re: zip file distribution? You mean as opposed to tar.gz? The .tar.gz is just a unix thing. Mo

RE: JavaScript-Confirm inside a commandlink?

2005-02-24 Thread Doug Ly
Then, The onclick should be Onclick="return check(blah)" --Doug -Original Message- From: Slawek [mailto:[EMAIL PROTECTED] Sent: Thursday, February 24, 2005 2:21 PM To: MyFaces Discussion Subject: Re: JavaScript-Confirm inside a commandlink? thats what i understod reading your posts BUT

RE: JavaScript-Confirm inside a commandlink?

2005-02-24 Thread Doug Ly
Well, If your confirm function returns false when the user clicks on cancel, the form will not be submitted. --Doug -Original Message- From: Slawek [mailto:[EMAIL PROTECTED] Sent: Thursday, February 24, 2005 1:28 PM To: myfaces-user@incubator.apache.org Subject: Re: JavaScript-Confirm in

RE: Calling action within javascript

2005-02-22 Thread Doug Ly
hink onclick=" return checkPassword(this.form)" then return true > from your javascript function to submit, else false to cancle submit. > > > On Tue, 22 Feb 2005 11:29:21 -0600, Doug Ly <[EMAIL PROTECTED]> wrote: >> >> >> >> Hi, >> >>

Javascript in JSF

2005-02-22 Thread Doug Ly
Is there any difference if I put the onclick event before action and vice versa?   Like   Or Thanks  

RE: Calling action within javascript

2005-02-22 Thread Doug Ly
o cancle submit. On Tue, 22 Feb 2005 11:29:21 -0600, Doug Ly <[EMAIL PROTECTED]> wrote: > > > > Hi, > > I have a javascript to confirm the passwords are matched which will be > executed on onclick event of a commandButton tag. > > onclick="checkP

Calling action within javascript

2005-02-22 Thread Doug Ly
Hi, I have a _javascript_ to confirm the passwords are matched which will be executed on onclick event of a commandButton tag.   The problem is after onclick event, how can I call the event action in my _javascript_? Thanks --Doug  

RE: commandButton and onclick, does not submit properly

2005-02-21 Thread Doug Ly
Dude, Check to see if you put the commandButton tag inside the form tag. This is an issue that took me a week to find out! Doug -Original Message- From: Travis Reeder [mailto:[EMAIL PROTECTED] Sent: Mon 2/21/2005 6:31 PM To: MyFaces Discussion Subject: commandButton and onclick, does not

RE: dataTable question

2005-02-18 Thread Doug Ly
Oh... I see. In that case, the dataTable model still cannot be used to propagate the changes back to the database. What I am doing right now is having a bean/class to store the values of each column of the dataTable. I also have an attribute called "dirty" to see if any of the values has changed. T