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...
Show off your group to the world. Share a photo of your group with us.

Best of Y! Groups

   Check them out and nominate your group.

Messages

  Messages Help
Advanced
Messages 41910 - 41939 of 42948   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
41910
First I don't understand why you are naming the checkboxes the same. But with that said... Try this for part one. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01...
Hank Miller
hankcfman
Offline Send Email
Nov 1, 2007
1:20 pm
41911
See if you can print preview this page http://www.codeave.com/css/page-break.htm I tested it with my IE7 and it works great it uses this code <html> <head> ...
Ernest Breau
cf_ernie
Online Now Send Email
Nov 1, 2007
2:11 pm
41912
Thanks, Hank, I will give this a try. I originally named each checkbox with different names like box_1, box_2, etc., but I could not figure out a way to insert...
Uraidiot
uraidiot2000xyz
Offline Send Email
Nov 1, 2007
3:29 pm
41913
Ok, I had this working before and something is going on. I have a form with a cfgrid control. It realized that I needed to do some work on the form yesterday...
Rusty
the_game570
Offline Send Email
Nov 1, 2007
8:32 pm
41914
you are dumping FirstGrid when you named it SecondGrid <cfdump var="#form#"> ... -- ____________________________________________________ Ernest E. Breau Jr. ...
Ernest Breau
cf_ernie
Online Now Send Email
Nov 1, 2007
10:31 pm
41915
Finally got it figured out (thanks to Charlie Arehart!) - the whole site, for whatever reason (not mine), is under SSL but the Scheduler didn't like it. I...
JoAnn Schlosser
jojo_super77
Offline Send Email
Nov 5, 2007
1:18 pm
41916
I have a form with ten checkboxes, all with the same name : <input type="checkbox" name="error_id" value="1">1 <br> <input type="checkbox" name="error_id"...
Uraidiot
uraidiot2000xyz
Offline Send Email
Nov 5, 2007
3:04 pm
41917
Create of valueList of the querycolumn with the error_id. <CFSET YourValueList = ValueList(YourQuery.Error_ID)> When you get to the Checkboxes: <Checkbox...
Mark Bureau
bu9418
Offline Send Email
Nov 5, 2007
3:11 pm
41918
Mark, thanks for the response. I think I follow what you are doing. But when I do my update in the action page, how and/or where would your code apply ? My...
Uraidiot
uraidiot2000xyz
Offline Send Email
Nov 5, 2007
4:47 pm
41919
... As a general rule with any sort of form input, if I want to check if the values have changed, I have tow copies of each input. One's free for the user to ...
Jane Williams
janewilliams20
Offline Send Email
Nov 5, 2007
4:56 pm
41920
i assume that ID_No is the identifier for that particular element of your table. Basically you have a table that looks something like this: ID_NO Error_ID 1...
Mark Bureau
bu9418
Offline Send Email
Nov 5, 2007
6:11 pm
41921
Thanks Mark, I think I understand what you are trying do now. However, my requirements changed slightly. My new table layout contains a txn_id (increment by...
Uraidiot
uraidiot2000xyz
Offline Send Email
Nov 6, 2007
2:58 am
41922
Anyone got any recommendations on some code to display an RSS feed? I'm sure I could write it from scratch, but I'd rather not re-invent too many wheels....
Jane Williams
janewilliams20
Offline Send Email
Nov 6, 2007
10:55 am
41923
at www.easycfm.com there are several good tutorials, especially the ones on setting up an RSS feed and catching the feed. Look in the tutorials section at...
Andrew Wetmore
umiliik
Offline Send Email
Nov 6, 2007
1:23 pm
41924
I have a cfform with an action page. I have two buttons at the bottom with different labels, like button 1 and button 2, that call this action page to insert...
Uraidiot
uraidiot2000xyz
Offline Send Email
Nov 6, 2007
9:04 pm
41925
Can you suppply me with the code you are using? ________________________________ From: coldfusion-howto@yahoogroups.com ...
Mark Bureau
bu9418
Offline Send Email
Nov 6, 2007
9:34 pm
41926
make both buttons submit buttons <input type="submit" name="btn_1" value="Button 1"> <input type="submit" name="btn_2" value="Button 2"> then on action page...
Ernest Breau
cf_ernie
Online Now Send Email
Nov 6, 2007
10:47 pm
41927
Got it ! Thanks ... __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around ...
Uraidiot
uraidiot2000xyz
Offline Send Email
Nov 6, 2007
11:42 pm
41928
oops, Ernest, I forgot something.I made your recommended changes and it seems to have affected my javascript field edits. I need to check for required entry,...
Uraidiot
uraidiot2000xyz
Offline Send Email
Nov 6, 2007
11:53 pm
41929
Here is my actual code to redisplay the checkboxes. I want to show all ten checkboxes and show the ones that were checked. If five of the boxes are checked, it...
Uraidiot
uraidiot2000xyz
Offline Send Email
Nov 7, 2007
12:22 am
41930
<cfform onSubmit="validateForm(document.pack_slip_form)" try that instead ... -- ____________________________________________________ Ernest E. Breau Jr. ...
Ernest Breau
cf_ernie
Online Now Send Email
Nov 7, 2007
12:50 am
41931
Hi Ernest, I made your recommended change and it still does not work, it is still doing the same thing. The error message box comes up and when I click ok, it...
Uraidiot
uraidiot2000xyz
Offline Send Email
Nov 7, 2007
4:14 am
41932
I have a cfform with the following : <cfinput type="radio" name="quantity_type" value="None Given">None Given <input type="hidden" name="quantity"...
Uraidiot
uraidiot2000xyz
Offline Send Email
Nov 7, 2007
2:54 pm
41933
... This sounds to me like something to do client-side, not server-side. You're changing your requirements based on how they click on the radio buttons, and by...
Jane Williams
janewilliams20
Offline Send Email
Nov 7, 2007
3:08 pm
41934
Hi All, Ihave to invoke a webservice and to call function present there. I am sucessfully inoke webserive and call the fucntion. As per the Web service...
anoop bhaskaran
anoop_b8
Online Now Send Email
Nov 7, 2007
3:32 pm
41935
... If it helps at all, I've used CF to read in an XML file, but that was just local. My code started like this: <cffile action = "read" file =...
Jane Williams
janewilliams20
Offline Send Email
Nov 7, 2007
3:56 pm
41936
I'm using the following to validate email formats before executing a cfmail-generated mass mailing, but I'm still getting returns that indicates an email is...
raehm
Offline Send Email
Nov 7, 2007
4:54 pm
41937
I have an application that will send a cfmail immediately when the email address is entered and the user submts the form. Once the form is submitted, the ...
Uraidiot
uraidiot2000xyz
Offline Send Email
Nov 7, 2007
6:19 pm
41938
This is form scratch and done in gmail's text editor, so forgive the syntax, but this is the general idea behind it and i have used several times. Insert...
Ernest Breau
cf_ernie
Online Now Send Email
Nov 7, 2007
6:48 pm
41939
There seems to be a problem with the RegEx. Emails now allow ANY character except {space} before the @ sign. So if an email has a single quote in it... that...
Hank Miller
hankcfman
Offline Send Email
Nov 7, 2007
9:10 pm
Messages 41910 - 41939 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