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 to share photos of your group with the world? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.

Messages

  Messages Help
Advanced
Messages 42500 - 42529 of 42890   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
42500
I've got this code: <cfif isDefined(request.str_Billinfo.BillLastName)> that is throwing this error: Element STR_BILLINFO.BILLLASTNAME is undefined in REQUEST ...
tmallan
Offline Send Email
Mar 1, 2008
10:18 pm
42501
You need to put the variable name inside quotes isDefined("somename")...
George
georgefarnsw...
Offline Send Email
Mar 1, 2008
10:24 pm
42502
You need to put quotes around it: isDefined("request.str_Billinfo.BillLastName") or use <cfif StructKeyExists(request, "str_BillInfo") and...
Hank Miller
hankcfman
Online Now Send Email
Mar 1, 2008
10:42 pm
42503
George, Wow, an answer in 6 mins on a (for me) Saturday afternoon. Thanks. Please tell your waitperson to put a beverage of your choice on my tab....
tmallan
Offline Send Email
Mar 1, 2008
10:44 pm
42504
I have a form with the following fields : <cfinput type="text" name="return_to_supplier_supplier_number" onValidate="validateOptionTextBox" message="Supplier ...
Uraidiot
uraidiot2000xyz
Offline Send Email
Mar 5, 2008
1:13 am
42505
I have a form with a radio button and an input field, here is partial code : <input type="radio" name="quantity_type" value="Single Lot"...
Uraidiot
uraidiot2000xyz
Offline Send Email
Mar 5, 2008
5:56 am
42506
This should get you started <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <title>Untitled</title> <script language="JavaScript"...
Hank Miller
hankcfman
Online Now Send Email
Mar 5, 2008
2:11 pm
42507
Hi Hank, Thanks for your response. I copied and pasted your code and it does not seem to work. I entered a value in the input field but the radio button...
Uraidiot
uraidiot2000xyz
Offline Send Email
Mar 5, 2008
3:23 pm
42508
Hi Hank, Thanks for your response. I copied and pasted your code and it does not seem to work. I entered a value in the input field but the radio button...
Uraidiot
uraidiot2000xyz
Offline Send Email
Mar 5, 2008
3:57 pm
42509
If you're using Firefox you may need to clear cache, it has a nasty habit of "remembering" forms. If that is not the case, check to see if there is a...
C. Hatton Humphrey
ny5i
Online Now Send Email
Mar 5, 2008
4:01 pm
42510
The page wrapped the content so I put the comments in /**/ to cover the wrapping. Try it again. I also tested this in firefox and it works. <!DOCTYPE HTML...
Hank Miller
hankcfman
Online Now Send Email
Mar 5, 2008
4:36 pm
42511
Hi Hank, for some reason, it still will not work for me. I am using IE and here is your code that I am using, just copy and paste (there were some spaces and I...
Uraidiot
uraidiot2000xyz
Offline Send Email
Mar 5, 2008
5:50 pm
42512
... I'd suggest adding the following line before the document.form1.r.checked = ck line: alert(ck); It should return true or false when you move form focus...
C. Hatton Humphrey
ny5i
Online Now Send Email
Mar 5, 2008
5:57 pm
42513
onBlur fires when focus is lost.. might want to try onKeyUp, that will fire after the keys on the keyboard are pressed and then released...
Greg Morphis
omenchaos
Offline Send Email
Mar 5, 2008
6:24 pm
42514
It has to do with the space issues when you copy from this email. Go to this URL: http://www.blackrhinoinc.com/test.html Then copy the source from the page....
Hank Miller
hankcfman
Online Now Send Email
Mar 5, 2008
7:52 pm
42515
OK, I get it now. When I put the cursor in the input field and enter something, the button is not checked. As soon as I move the cursor out after entering, the...
Uraidiot
uraidiot2000xyz
Offline Send Email
Mar 6, 2008
3:27 pm
42516
I have a table with 31 rows. I autogenrate three columns of checkboxes (with one extra) off of this table : <cfoutput query="qryGet_Disposition"> <cfif...
Uraidiot
uraidiot2000xyz
Offline Send Email
Mar 6, 2008
11:15 pm
42517
Go back to the URL I suppied. I added the onkeyup handler. The reason I used the onblur handler was: some people cut and paste content. The onkeyup handler...
Hank Miller
hankcfman
Online Now Send Email
Mar 7, 2008
12:18 am
42518
I have just started into using CFC's that need to call on path variables in the Application.cfc or Application.cfm file. I am hitting dead ends as I notice...
mrblack728
Offline Send Email
Mar 7, 2008
4:22 am
42519
Here is some example code: Application.cfm - <cfset testVar="testing"> test.cfc - <cfcomponent> <cffunction name="testPg" access="public"> <cfset...
mrblack728
Offline Send Email
Mar 7, 2008
4:45 am
42520
Try using the request scope. app.cfc <cfset request.testVar="testing"> <!---test.cfc---> <cfcomponent> <cffunction name="testFn" access="public"> <cfreturn...
Hank Miller
hankcfman
Online Now Send Email
Mar 7, 2008
5:45 am
42521
If I understand you correctly.... When you submit the form. Use the same query for your information. <cfloop query="qryGet_Disposition"> <input type="checkbox"...
Hank Miller
hankcfman
Online Now Send Email
Mar 7, 2008
6:30 am
42522
I query a table using ref_no and return five records. I display all five records in form format, in a table, using <cfoutput query="qry">. This is an edit...
Uraidiot
uraidiot2000xyz
Offline Send Email
Mar 7, 2008
5:33 pm
42523
I am trying to run a site on our server that is initialized by a cf component. Apparently the front page is generated by cf component that gets initialized...
ngu_nyindem
Offline Send Email
Mar 7, 2008
7:11 pm
42524
I posted this earlier and have been trying to figure it out but can't, so I tried another way and it almost works, but not quiet. I have a table with 31 rows...
Uraidiot
uraidiot2000xyz
Offline Send Email
Mar 8, 2008
12:07 am
42525
I have a form that will display multiple line items based on query using urdn_number. There is a checkbox next to each line item for multiple deletes (in this ...
Uraidiot
uraidiot2000xyz
Offline Send Email
Mar 8, 2008
9:43 pm
42526
Hi Hankcfman, Thanks for taking the time to reply. Your code works just fine (I tried it after you posted it; sorry for the delayed response). I was trying to...
mrblack728
Offline Send Email
Mar 8, 2008
11:58 pm
42527
Does anyone have a clue were to start with creating a service like: keywordspy.com? I believe this is a reverse keyword lookup that they somehow do, but I...
mrblack728
Offline Send Email
Mar 9, 2008
8:33 am
42528
It depends on your location. Go to monster.com...they have a rate calculator there that can give you an idea of the going rate in your area. If you were in...
Eric Roberts
woad
Offline Send Email
Mar 9, 2008
11:12 pm
42529
Again, that depends on location. Here in Chicago, recruiters have told me that we are hard to find and that companies are swooping us up as fast as they...
Eric Roberts
woad
Offline Send Email
Mar 9, 2008
11:14 pm
Messages 42500 - 42529 of 42890   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