CF or Javascript Suggestion

2007-09-27 Thread Mallory Woods
hange the order by clicking a button that would move the item in the list. What would be ideal, would be maybe a JavaScript menu where the user could control the order of the items and when they wanted to edit the items they would just click an edit button and edit the information they needed. When

Coldfusion5, cfgrid does not load,a icon in top left corner(Javascript software)

2007-09-27 Thread ismail cassiem
Hi, My cfgrid use to work, onload of grid it installed javascript software once off. Over the last few months I installed new instances of javascript software and now my grid does not load & returns an icon in the top left corner. I uninstalled all java software. How do I fix this, wha

Re: [CFCDEV] Re: javascript alert and redirection

2007-09-24 Thread Tom Chiverton
On Thursday 20 Sep 2007, [EMAIL PROTECTED] wrote: > this list has always been that the focus is so strong on OO subjects that > it really discourages any questions outside of that even though the > questions would be specific to CFCs. Basic JavaScript questions are neither, and

Re: javascript and redirect

2007-09-21 Thread erik tsomik
I found this script on the internet. So i wondering if it possible to integrate this script into 1 I alredy have . I mean when session does not exist show progress bar and then redirect * { font-family: "Arial", sans-serif; } #wrap { margin-top: 50px;text-align: center; } #barwrap { po

Re: javascript and redirect

2007-09-21 Thread Charlie Griefer
else setTimeout( "progress();", time /steps); > } > > function redir() { > alert( "Redirecting now!"); > } > > > > > > > > progress: > > > > > > > Click here to start bar (only once please, > you'll break

Re: javascript and redirect

2007-09-21 Thread erik tsomik
lert( "Redirecting now!"); } progress: Click here to start bar (only once please, you'll break it) > the cflocation will preclude any client side code (HTML or JS) from > displaying. > > use a JavaScript redirect. &g

Re: javascript and redirect

2007-09-21 Thread erik tsomik
Because cflocation will preclide javascript and I will not see the alert message. So I need to see some kinda message which will redirect in approximately 5 sec to a different page >Your outputting the data to the client from within a CF page, so why not >just use CF to change the lo

RE: javascript and redirect

2007-09-21 Thread Robert Harrison
Your outputting the data to the client from within a CF page, so why not just use CF to change the location? Instead of outputting a script or meta refresh, why not just CFLOCATION? The only reason I could see using script on the client side would be to break out of frames or something. Rob

Re: javascript and redirect

2007-09-21 Thread Charlie Griefer
this might be an example of isDefined() being preferred over structKeyExists(). the code i provided goes here On 9/21/07, erik tsomik <[EMAIL PROTECTED]> wrote: > I tried this code but it saying that the session does not exist > > > > content="5;url=http://olympus.scs.jhu.edu/#session.

Re: javascript and redirect

2007-09-21 Thread erik tsomik
I tried this code but it saying that the session does not exist http://olympus.scs.jhu.edu/#session.URL#/admissions/";>;Your session has expired. You will be redirect in 5 seconds. http://olympus.scs.jhu.edu/#session.URL#/admissions/";>click here if you are not automatically redirected. >

Re: javascript and redirect

2007-09-21 Thread Charlie Griefer
well, one issue you're going to run into off the bat is that if the session is expired, the #session.URL# variable will be undefined. so you'll have to address that. but it's no different than the logic you used in your initial post. the code i provided goes here On 9/21/07, erik tsomik

Re: javascript and redirect

2007-09-21 Thread erik tsomik
How can I integrate this solution into session expired > >content="5;url=http://olympus.scs.jhu.edu/#session.URL#/admissions/";> > >Your session has expired. You will be redirect in 5 seconds. >http://olympus.scs.jhu.edu/#session.URL#/admissions/";>click >here if you are not automatically redirec

Re: javascript and redirect

2007-09-21 Thread Charlie Griefer
ED]> wrote: > > the cflocation will preclude any client side code (HTML or JS) from > > displaying. > > > > use a JavaScript redirect. > > > > > > > > > > alert('your session has expired'); > > > <cfoutput>location.href=

Re: javascript and redirect

2007-09-21 Thread erik tsomik
> the cflocation will preclude any client side code (HTML or JS) from > displaying. > > use a JavaScript redirect. > > > > alert('your session has expired'); > <cfoutput>location.href="<a rel="n

Re: javascript and redirect

2007-09-21 Thread Bruce Sorge
Try this: alert ('your session has expired'); window.location = "http://olympus.scs.jhu.edu/#Session.URL#/admissions/";; erik tsomik wrot

Re: javascript and redirect

2007-09-21 Thread Charlie Griefer
the cflocation will preclude any client side code (HTML or JS) from displaying. use a JavaScript redirect. alert('your session has expired'); <cfoutput>location.href="<a rel="nofollow" href="http://olympus.scs.j

javascript and redirect

2007-09-21 Thread erik tsomik
I am trying to show the alert saying that the session is expired and redirect then to home page. I got this working except I do not see the alert alert ('your session has expired'); Re: Javascript Book
Thanks for your help. We had a look through the books, they seem really good but we were sold on the free cd you get with 'JavaScript Bible' :) Thanks again ~| Create robust enterprise, web RIAs. Upgrade to ColdFu

Re: Javascript Book

i'll second the JavaScript Bible by Danny Goodman. Awesome book. You'll learn from it and you'll keep it for reference. On 9/17/07, Tom Chiverton <[EMAIL PROTECTED]> wrote: > On Monday 17 Sep 2007, [EMAIL PROTECTED] wrote: > > Hi does anyone know of a good javas

Re: Javascript Book

On Monday 17 Sep 2007, [EMAIL PROTECTED] wrote: > Hi does anyone know of a good javascript book The 'JavaScript bible' is very good, and comes with handy print-out-and-keep DOM cards. -- Tom Chiverton Helping to seamlessly grow enterprise-class e-markets on: http://thefalken.li

RE: Javascript Book

> Hi does anyone know of a good javascript book O'Reilly's "JavaScript: The Definitive Guide" is, well, the definitive guide. I highly recommend it. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ Fig Leaf Software provides the highest caliber vendor-author

Javascript Book

Hi does anyone know of a good javascript book thanks very much richard ~| Get involved in the latest ColdFusion discussions, product development sharing, and articles on the Adobe Labs wiki. http://labs/adobe.com/wiki

Re: Javascript problem only, but....

>>This summarises the situation: More specifically, I found this page which reports exactly the problem: http://www.quirksmode.org/bugreports/archives/2006/02/scrollTop_in_select_list_in_IE_is_always_0.html It is another problem due to the windowed nature of the select box in IE. No work around

Re: Javascript problem only, but....

>>Hope this helps. Thanks, but not really. This apply to the document itself, the whole page, ie. the body. But what about a select box inside the page? -- ___ REUSE CODE! Use custom tags; See http://www.contentbox.com/claude/customtags/tagstore.cfm (Please s

Re: Javascript problem only, but....

This summarises the situation: http://www.quirksmode.org/js/doctypes.html And this is the latest info: http://www.quirksmode.org/viewport/compatibility.html Scrolling offset (How much the page has scrolled) var x,y; if (self.pageYOffset) // all except Explorer { x = self.pageXOffset;

Javascript problem only, but....

Hi, Is it a well known problem and is there any work around? The offsetTop value of an option in a select, and the scrollTop of the select are always returned as zero by IE, whatever the position of the scroll bar is. Mozilla shows correct values. See example at http://www.contentbox.com/claude

Re: CF8 Flash froms VS. AJAX (javascript)

Al votes are pro AJAX (javascript), so that makes the choice easy. Thanks everybody ~| ColdFusion is delivering applications solutions at at top companies around the world in government. Find out how and where now http

Re: CF8 Flash froms VS. AJAX (javascript)

> I have thought of these points: > > PRO Flash Form > 1. Browser independent. (although you need a Flash plugin) > 2. Quick developement. (format = flash) > > PRO AJAX (javascript) > 1. Fast ( almost no loading times on tree for ex, Flash Form (CF7) are > sluggish

Re: CF8 Flash froms VS. AJAX (javascript)

2. Quick developement. (format = flash) > > PRO AJAX (javascript) > 1. Fast ( almost no loading times on tree for ex, Flash Form (CF7) are > sluggish) > 2. CFM engine indepent, could deploy CMS on for example Railo too. &

RE: CF8 Flash froms VS. AJAX (javascript)

n, we have now gone to the Ajax stuff. Regards Dale Fraser http://dalefraser.blogspot.com -Original Message- From: Joeri B [mailto:[EMAIL PROTECTED] Sent: Monday, 3 September 2007 10:03 PM To: CF-Talk Subject: CF8 Flash froms VS. AJAX (javascript) Hi Guys, I want to build a new C

CF8 Flash froms VS. AJAX (javascript)

points: PRO Flash Form 1. Browser independent. (although you need a Flash plugin) 2. Quick developement. (format = flash) PRO AJAX (javascript) 1. Fast ( almost no loading times on tree for ex, Flash Form (CF7) are sluggish) 2. CFM engine indepent, could deploy CMS on for example Railo too. What

Re: Update Flash Form Grid with Javascript

> I have an involved flash form that I update using getURL() and Spry's > loadURL() to update database records without page refreshing. Part of > this form is a datagrid which binds its data to the user form. > > Is there a way, on a javascript callback event from the S

Update Flash Form Grid with Javascript

I have an involved flash form that I update using getURL() and Spry's loadURL() to update database records without page refreshing. Part of this form is a datagrid which binds its data to the user form. Is there a way, on a javascript callback event from the Spry loadURL(), to also re

Re: Bandwidth checking using javascript?

Andy Matthews wrote: > Does anyone know of a tool that can be used to test bandwidth? Open source > is preferred. Pure JS or jQuery is also preferred. > > I need to be able to specify a threshold for "low" and "hi" bandwidth with > this tool. Anyone have one or know of one? Check the source of

Bandwidth checking using javascript?

Does anyone know of a tool that can be used to test bandwidth? Open source is preferred. Pure JS or jQuery is also preferred. I need to be able to specify a threshold for "low" and "hi" bandwidth with this tool. Anyone have one or know of one? Andy Matthew

RE: Javascript MouseOver

: Javascript MouseOver There is a comma missing between left and top. Robert B. Harrison Director of Interactive services Austin & Williams 125 Kennedy Drive, Suite 100 Hauppauge NY 11788 T : 631.231.6600 Ext. 119 F : 631.434.7022 www.austin-williams.com Great advertising can't be either

Re: OT: Javascript MouseOver

missing a comma after left=450 ? On 8/21/07, Steve LaBadie <[EMAIL PROTECTED]> wrote: > I have created a mouse over effect and it works fine. The only problem > I am having is that the top= in the below example does not work in > Firefox. Are there any ideas to resolve this issue? The window s

RE: Javascript MouseOver

> I have created a mouse over effect and it works fine. The > only problem I am having is that the top= in the below > example does not work in Firefox. Are there any ideas to > resolve this issue? The window stay at the top instead of > coming down 350px. > > ... > > myWin = window.open("",

RE: Javascript MouseOver

t must be &. -Original Message- From: Steve LaBadie [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 21, 2007 2:19 PM To: CF-Talk Subject: OT: Javascript MouseOver I have created a mouse over effect and it works fine. The only problem I am having is that the top= in the below example does not wo

OT: Javascript MouseOver

I have created a mouse over effect and it works fine. The only problem I am having is that the top= in the below example does not work in Firefox. Are there any ideas to resolve this issue? The window stay at the top instead of coming down 350px. Code: