RE: Checkboxes not passing variables correctly

2008-03-25 Thread Steve LaBadie
: Tuesday, March 25, 2008 3:53 PM To: CF-Talk Subject: Re: Checkboxes not passing variables correctly > > Is there a list of all possible delimiters value? A delimeter could be any 'legal' character in a string. The delimeter you use is informed by the string you are given to break up

Re: Checkboxes not passing variables correctly

2008-03-25 Thread Dominic Watson
> > Is there a list of all possible delimiters value? A delimeter could be any 'legal' character in a string. The delimeter you use is informed by the string you are given to break up into list items; using different delimiters will break up your 'list' in different ways. Here is some code to dem

Re: Checkboxes not passing variables correctly

2008-03-25 Thread Azadi Saryev
the value attrubute of your checkboxes are different from their labels/text? typos? Azadi Saryev Sabai-dee.com http://www.sabai-dee.com/ Steve LaBadie wrote: > I have a group of 10 checkboxes where 3 have to be checked. I have a JS > script to validate this. The issue at hand is the values are

RE: Checkboxes not passing variables correctly

2008-03-25 Thread Steve LaBadie
] Sent: Tuesday, March 25, 2008 10:30 AM To: CF-Talk Subject: Re: Checkboxes not passing variables correctly >>Is there a list of all possible delimiters value? If you want to know more about forms and how values are passed, use in your action template and you'll know everything a

Re: Checkboxes not passing variables correctly

2008-03-25 Thread Claude Schneegans
>>Is there a list of all possible delimiters value? If you want to know more about forms and how values are passed, use in your action template and you'll know everything a young lady should know before wedding ;-) -- ___ REUSE CODE! Use custom tags; See ht

Re: Checkboxes not passing variables correctly

2008-03-25 Thread morgan l
t. > East Stroudsburg, Pa 18301 > 570-422-3999 > [EMAIL PROTECTED] > http://www.esu.edu > > -Original Message- > From: Claude Schneegans [mailto:[EMAIL PROTECTED] > Sent: Tuesday, March 25, 2008 9:59 AM > To: CF-Talk > Subject: Re: Checkboxes not passing variables corr

Re: Checkboxes not passing variables correctly

2008-03-25 Thread Matt Williams
Sent: Tuesday, March 25, 2008 9:59 AM > To: CF-Talk > Subject: Re: Checkboxes not passing variables correctly > > >>delimiters="crlf"> > > You're using "crlf" as delimitior? > No wonder c, r, l & f are lost. > You probably meant CR LF,

Re: Checkboxes not passing variables correctly

2008-03-25 Thread Claude Schneegans
>>Is there a list of all possible delimiters value? There only one delimiter: the comma, which is the default delimiter for all list functions, so you don't need to specify one. -- ___ REUSE CODE! Use custom tags; See http://www.contentbox.com/claude/customt

RE: Checkboxes not passing variables correctly

2008-03-25 Thread Steve LaBadie
rospect St. East Stroudsburg, Pa 18301 570-422-3999 [EMAIL PROTECTED] http://www.esu.edu -Original Message- From: Claude Schneegans [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 25, 2008 9:59 AM To: CF-Talk Subject: Re: Checkboxes not passing variables correctly >>delimiters="

Re: Checkboxes not passing variables correctly

2008-03-25 Thread Claude Schneegans
>>delimiters="crlf"> You're using "crlf" as delimitior? No wonder c, r, l & f are lost. You probably meant CR LF, but these are not the delimiters used to separate field values, the simple comma is used. So just use Faculty Supervisor: #f# or more simply: Faculty Supervisor: #form.fac# -- ___

Re: Checkboxes not passing variables correctly

2008-03-25 Thread Azadi Saryev
Faculty Supervisor: delimiters="crlf">#f# that's your problem - your list delimiters. Azadi Saryev Sabai-dee.com http://www.sabai-dee.com/ Steve LaBadie wrote: > I have a group of 10 checkboxes where 3 have to be checked. I have a JS > script to validate this. The issue at hand is the values

Re: Checkboxes not passing variables correctly

2008-03-25 Thread Davide Campo
This script work correctly, try it. #f# function is_checked() { var formObj = document['internships']['fac']; var count = 0; for (i=0;i

Re: Checkboxes not passing variables correctly

2008-03-25 Thread Cutter (CFRelated)
No, there's nothing there that would explain it. I'd like to blame it on the font tags, but I can't;) Steve "Cutter" Blades Adobe Certified Professional Advanced Macromedia ColdFusion MX 7 Developer _ http://blog.cutterscrossing.com Steve LaBadie wrote: > This is the

RE: Checkboxes not passing variables correctly

2008-03-25 Thread Steve LaBadie
This is the script to check for 3 checked boxes: function is_checked() { var formObj = document['internships']['fac']; var count = 0; for (i=0;i

Re: Checkboxes not passing variables correctly

2008-03-25 Thread Cutter (CFRelated)
Steve, We want to help, but without seeing the form code it is almost impossible to troubleshoot. Steve "Cutter" Blades Adobe Certified Professional Advanced Macromedia ColdFusion MX 7 Developer _ http://blog.cutterscrossing.com Steve LaBadie wrote: > I have a group