Search the web
Sign In
New User? Sign Up
coldfusion-howto · ColdFusion Tips Tutorial Help Questions
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Want your group to be featured on the Yahoo! Groups website? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.

Messages

  Messages Help
Advanced
Messages 29428 - 29457 of 42948   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
29428
Need to get an easy and fast to setup template for a forum board for a website I am working on. Needs to be compat with CFMX and ODBC db source. Would like...
Matt
mjn1rar
Offline Send Email
Nov 1, 2004
8:03 am
29429
View the source. Do you see the <CFOUTPUT> tags in there? If so, is the template a .cfm file? If so and you're running MX, did you (or the install) run the...
Bartlett, John
wyntermoonwolf
Offline Send Email
Nov 1, 2004
9:37 am
29430
The good news is that it seems that your ColdFusion install worked 'cause you got a CF error message. The bad news is that the default "test" apps didn't get...
Bartlett, John
wyntermoonwolf
Offline Send Email
Nov 1, 2004
9:42 am
29431
I am trying to setup rds connection from a workstation. I need a better explanation on the settings to input. As I am getting the following error when I try...
Matt
mjn1rar
Offline Send Email
Nov 1, 2004
9:45 am
29432
<not sure if this went out on saturday, so i am posting again> ... Yesterday, or perhaps the day before, i responded to someone's post about exam busters...
webspinner - encore t...
surftrip
Offline Send Email
Nov 1, 2004
2:37 pm
29433
Yeah, probably not the best example, but the mechanism is right. I usually use something like this if I have to do some more data-wrangling before running the...
JoAnn Schlosser
jojo_super77
Offline Send Email
Nov 1, 2004
4:12 pm
29434
Hi, I'm new to Coldfusion and have been thrown in to the deep end(or it feels like it). Can u suggest some websites with good tutorials so i can get a feel for...
mocambicando
Offline Send Email
Nov 1, 2004
4:55 pm
29435
cfschedule can allow you to launch at page at any scheduled time; therefore, populate the page to be scheduled with all your functionality for query. ...
webspinner - encore t...
surftrip
Offline Send Email
Nov 1, 2004
5:04 pm
29436
Hi, I have a scheduled task setup and this is an auto-generated error I get... I'm not sure what's going on. I've tried setting up the data in a wddx packet...
Arthur, Douglas
douga2k2
Offline Send Email
Nov 1, 2004
6:04 pm
29437
I was able to determine part of my problem. I use cfflush before a cflocation and that is a known issue with ColdFusion. Does anyone know of any workarounds to...
Arthur, Douglas
douga2k2
Offline Send Email
Nov 1, 2004
6:40 pm
29438
You can use Javascript to redirect to the next page, even a form post if you wish. -John ... From: Arthur, Douglas I was able to determine part of my problem....
Bartlett, John
wyntermoonwolf
Offline Send Email
Nov 1, 2004
7:45 pm
29439
That didn't work out so well being that I'm needing to pass a wddx packet over. Thanks though. I was able to fit it all into another solution.... Read more if ...
Arthur, Douglas
douga2k2
Offline Send Email
Nov 1, 2004
8:39 pm
29440
Cool that you found a solution. Note that there isn't a size limit to hidden text fields. Escaping double-quotes, you could dump the whole thing in one....
Bartlett, John
wyntermoonwolf
Offline Send Email
Nov 1, 2004
9:04 pm
29441
ColdFusion Hosting Providers ColdFusion Hosting Providers' List brought to you by *** ColdFusion-HowTo: Yahoo's No. 1 and the biggest group for ColdFusion...
coldfusion-howto@yaho...
Send Email
Nov 2, 2004
12:29 am
29442
Hello Dears, I want to use three radio boxes and when i click on the 3rd of them there must be shown a textbox and when i clicked on any other it does not...
faisal dar
darravian
Offline Send Email
Nov 2, 2004
8:04 am
29443
Hi Dar, you can do this by with this simple JavaScript functions: <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=windows-1252"> ...
Vicente Nze
machitonze
Offline Send Email
Nov 2, 2004
3:55 pm
29444
Hi Dear, the event that call the JavaScript function is "onClick", OK? __________________________________ Do you Yahoo!? Check out the new Yahoo! Front Page. ...
Vicente Nze
machitonze
Offline Send Email
Nov 2, 2004
4:06 pm
29445
Good morning, I am able to get the no entry to work on a text field if it is a <input> and not an <cfinput> such as <input name="a5_other" type="text"...
x1jeanette
Offline Send Email
Nov 2, 2004
6:21 pm
29446
Does the noEnter function return a true if everything is okay? -John ... From: x1jeanette [mailto:x1jeanette@...] Good morning, I am able to get the no...
Bartlett, John
wyntermoonwolf
Offline Send Email
Nov 2, 2004
6:28 pm
29447
... Hi John No it doesn't how would I do that? Jeanette...
x1jeanette
Offline Send Email
Nov 2, 2004
7:16 pm
29448
When you use the return functionname() method, you need to either "return true" or "return false". If you don't return true, it ignores the result. -John ... ...
Bartlett, John
wyntermoonwolf
Offline Send Email
Nov 2, 2004
7:21 pm
29449
I'd change these lines a little, since modern Netscape won't recognize document.layers... ... Instead, use this: var isNS = (document.layers) ? true : false; ...
Ben Curtis
wsi_ben
Offline Send Email
Nov 2, 2004
8:09 pm
29450
... ignores ... I appreciate your help and I see where I need to use a return true but I'm not sure where to place it in my code <cfinput name="a1_staff_name"...
x1jeanette
Offline Send Email
Nov 2, 2004
8:37 pm
29451
You return it at the end of the javascript function noEnter....
Bartlett, John
wyntermoonwolf
Offline Send Email
Nov 2, 2004
8:40 pm
29452
... I returned it at the end <cfset InputPassThrough = "onkeypress=""return noenter()""" /> <cfinput name="a1_staff_name" type="text" required="yes" message=...
x1jeanette
Offline Send Email
Nov 2, 2004
9:57 pm
29453
You're adding it to the CFINPUT tag - not the Javascript function. Look for: Function noEnter() { ... } The "..." represents some javascript code. Before the...
Bartlett, John
wyntermoonwolf
Offline Send Email
Nov 2, 2004
10:00 pm
29454
... need ... Gotcha --- I entered it here before I used a cfset --- but no luck <script type="text/javascript"> <!-- function noenter() { return...
x1jeanette
Offline Send Email
Nov 2, 2004
10:20 pm
29455
It looks like you entered the function name incorrectly in the CFINPUT tag. noEnter is not the same as noenter. Javascript is case sensitive. AAA <> aaa <>...
Bartlett, John
wyntermoonwolf
Offline Send Email
Nov 2, 2004
10:26 pm
29456
... Thank you so much.. I replaced the Noenter with noenter but still no luck... <script type="text/javascript"> <!-- function noenter() { return...
x1jeanette
Offline Send Email
Nov 2, 2004
10:50 pm
29457
I am using CFMX and an Access database & need some help with a reporting query I am trying to build. At this point it is not throwing any errors, but it is...
Donna
deeveeous28
Offline Send Email
Nov 2, 2004
10:50 pm
Messages 29428 - 29457 of 42948   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2007 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help