Does anyone know how to create dynamic interactive pdf forms using the new CFPDF function in CF8 where logos in each form can be dynamically generate in the...
Hi, Does anyone know where I can find a CF music library script of a tutorial for one? Thanks! ... Pamela 'Elsinore' Forte Web Designer Tel: (246) 438-0147 ...
Greg, thanks for the response. My form input is now this : <td><input type="text" name="comments#line_item#" size="50" maxlength="50" ></td> In my action page,...
I have a form where the user has to enter a code. I need to verify the entry against a lookup table and if the recordcount is 0, entry is invalid and display...
use the prototype.js to do an AJAX call back to the database on a javascript onBlur or onChange event. Retrieve results in a secondary cf file, where the...
I use the following code to display display all line items from a query, and add checkboxes for each line item, so that if the box is checked, that line item...
Hi, I am a newcomer to CF and working on my first CF site. Just one thing I still can't seem to come up with a way to do and I am hoping someone here will...
I am using woork' CF version of "Search with autosuggest feature" on http://woork.blogspot.com/2008/02/search-with-autosuggest-feature_06.html Everything is...
No I mean, I supposed can click on one of the result, and the result can appear in the text box, then I can click on button to submit the form. but when I...
I see what you're saying - I had not looked at the example... unfortunately I think the issue is more with the Javascript being used and not the CFML code....
Since I am not a programmer and have very limited knowledge of coldfusion, I post here for help and can sometimes figure things out. But this time, I am stuck ...
... There are a couple of ways, here's how I'd approach it based on your description: Add a text input name it com__#red_number#_#ref_line_item# Within your...
Thanks for your info. I am using MX 6.1 now. I know CFMX 8 has new feature of AJAX. I am getting it probably next year. so I still need to figure it out now. I...
It doesn't have to be associated with the query to put a new field in the line. I think the problem might be you are thinking it is harder than it is. ... ...
Once you're in your form loop, both the check box and the related input box should have the same id.. name then check box chk_#id#.. the input comment...
This almost works, for one line item only. I display and the comments match the line items. However, if there are more than one line item, I run into problems....
No, I understand the cfabort, that isn't the problem. The problem occurs in the form itself. I have a cfoutput query to display all the line items, which works...
My query will return three line items (for this example). I use cfoutput query to display all three of the line items. If I add a comments text box to the end...
... Why is the second part of this IF statement there? You're saying, "If I have field names and if the first one starts with "Del/""... especially when you...
Here is my code: <cfif #DayOfYear(ExperienceDate)# EQ (DayOfYear(Now()) - 14)> An email is sent out after fourteen days. I do not want to include Saturdays...
Yes, I guess the cfif is redundant, and I can change the cfabort. But there is a new problem and that is the form itself, before going to the action page. I...
Hi, I am trying to find a simple was to make sure a user fills in all fields in a form or else it will return an error pop up box that tells them to go back...
this is the code for my form : there are four records returned from the query, the first record has four comments boxes, the next record has three, etc. ...