RE: Variables in Java and Javascript - Fixed -

2000-10-18 Thread Gavin Myers
Thanks for all of your inputs. I actually wound up doing this: demo_verify_javascript.cfm demo_verify_java.cfm document.write("navigator.javaEnabled(): " + navigator.javaEnabled() + "
"); if (navigator.javaEna

RE: Variables in Java and Javascript

2000-10-18 Thread Jaime Garza
nesday, October 18, 2000 9:22 AM > To: CF-Talk > Subject: RE: Variables in Java and Javascript > > > What i've been looking into is cfwddx, i think its my only hope: > > > "javascript_verify_wddx"> > toplevelvariable="javascript_final_verify

RE: Variables in Java and Javascript

2000-10-18 Thread Dave Watts
> I do not know if or how you could tell that a broweser is > java-enabled. I'd wait and see if Watts responds to this... > one can always hope. You can use JavaScript, if it's on, to see if the browser supports Java: if (navigator.javaEnabled()) { alert('You have Java

RE: Variables in Java and Javascript

2000-10-18 Thread Simon Horwith
why not just do: instead of CFML2WDDX, WDDX2JS ? ~Simon -Original Message- From: Gavin Myers [mailto:[EMAIL PROTECTED]] Sent: Wednesday, October 18, 2000 12:22 PM To: CF-Talk Subject: RE: Variables in Java and Javascript What i've been looking into is cfwddx, i think its my

RE: Variables in Java and Javascript

2000-10-18 Thread Jason Powers
-Original Message- From: Evan Lavidor [mailto:[EMAIL PROTECTED]] Sent: Wednesday, October 18, 2000 12:02 PM To: CF-Talk Subject: RE: Variables in Java and Javascript Don't know about Java, but this can't be done with JavaScript. CF is server side, and JavaScript is client

RE: Variables in Java and Javascript

2000-10-18 Thread Gavin Myers
October 18, 2000 10:33 AM To: CF-Talk Subject: RE: Variables in Java and Javascript The javascript would work, yes. The java wouldn't work as you have it because you can only process one server side language per application page. Java and ColdFusion cannot be called on the same page. I do

RE: Variables in Java and Javascript

2000-10-18 Thread Aaron Johnson
browserhawk can catch enabled/disabled Java. http://www.browserhawk.com/products/bhawk/features.asp AJ -Original Message- From: Patricia Lee [mailto:[EMAIL PROTECTED]] Sent: Wednesday, October 18, 2000 11:33 AM To: CF-Talk Subject: RE: Variables in Java and Javascript The javascript

RE: Variables in Java and Javascript

2000-10-18 Thread Evan Lavidor
Don't know about Java, but this can't be done with JavaScript. CF is server side, and JavaScript is client side. By the time the JavaScript executes, CF has completed all of its execution. There are tags that check to see if JavaScript is enabled, check out CF_aBrowserInfo. Haven't used it yet

RE: Variables in Java and Javascript

2000-10-18 Thread Patricia Lee
The javascript would work, yes. The java wouldn't work as you have it because you can only process one server side language per application page. Java and ColdFusion cannot be called on the same page. I do not know if or how you could tell that a broweser is java-enabled. I'd wait and see if W