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...
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> ...
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...
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...
you are dumping FirstGrid when you named it SecondGrid <cfdump var="#form#"> ... -- ____________________________________________________ Ernest E. Breau Jr. ...
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...
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"...
Create of valueList of the querycolumn with the error_id. <CFSET YourValueList = ValueList(YourQuery.Error_ID)> When you get to the Checkboxes: <Checkbox...
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...
... 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 ...
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...
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...
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....
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...
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...
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...
Got it ! Thanks ... __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around ...
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,...
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...
<cfform onSubmit="validateForm(document.pack_slip_form)" try that instead ... -- ____________________________________________________ Ernest E. Breau Jr. ...
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...
... 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...
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...
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...
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 ...
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...
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...