You can use
<cfoutput group="mygroup" query="myquery"></cfoutput>
where mygroup is the field you want to group by.
Coldfusion help has a good example of this.
I am using the CFPDF tag in CF8 to create a mail merged document with data from a database.
One problem I am having is that the form fields are a static size. If i have text that is of varying size, say a Community Name, I would like the text to flow arround the data inserted in the form tag...
you need to make sure the radio button code is in a loop to loop over all of the data.
This can be accomplished with a
<cfoutput query="test">
radio button code
</cfoutput>
OR
<cfloop query="test">
radio button code
</cfloop
Mike
I have a web based system that uses Adobe Acrobat Reader 6.0 to open documents, print the contents and close the documents. The user is printing a series of contract documents.
I would like to merge data with a document using FDF and have it print without opening the document in Reader. I...
I have several forms that I fill with data using FDF. Users will from time to time enter a ( and do not enter the ending ). Adobe will error off stating that the form is damaged and cannot be repaired.
I was wondering if there was an easy way to check for this and escape it or something so...
I set up a routine that automatically prints all forms the user checks. I setup a loop that loops through all of the forms and opens and prints the form, then closes the form and goes to the next form. The user views each form for a second and then it is sent to the default printer...
Thanks for all of your help is figured it out. I changed the tag to a button tag type = submit and it worked see code below
<button type="submit" title="Change Order Log" onclick="window.location='../forms/multi_select.cfm?form_name=change_order_log'" style="font-size:10px; font-weight:700...
I have the following button:
<input type="button" value="Change Order Logs" title="Change Order Logs" src="../graphics/file_drawer_handle.gif" onclick="window.location='../forms/multi_select.cfm?form_name=change_order_log'" style="font-size:10px; font-weight:700; width: 89px; height: 90px...
I have a number that is Negative. I want to change this to a positive number without changing the value of the number.
Example
-1 change to 1
-2 change to 2
etc.
Mike
My intent here is not to waste anyones time.
I thought I had explained exactly what I was looking for in the way of an answer.
I will try to do a better job of explaing the situation in the future, so that no ones time is wasted.
Thanks for all the help.
Mike
Actually Dan, I was not adding functionality. I was responding to the posts by Clflava. He was providing a solution that I thought would not work for my specific situation.
Mike
cLflaVA,
Thanks for the code. It works as you stated. I apprieciate you taking the time to create a test application.
My only concern with your approach is with the loading of the array. Some of the data that is pulled up in the list is quite lengthy and I worry about the amount of time...
The only problem is that I do not have any idea what the street names will be ahead of time. So prepopulating an array with a list of possible names will not work.
Also I want the list to filter as they type, not after they have entered the complete street name.
I have a selection list that I display for users. THere is a field that I allow users to type in information and using java script I take them to the closest match in the list using the substring feature.
I would like to do the same tthing using a wildcard. The field contains addresses that...
Yes I am viewing the screen with the same machine in production and development. and yes the machine has XP SP2.
My question is why is it showing one way in development and different in production? I have looked on the server to see if it is some kind of setting, but could not find anything...
I have a page that I want full screen. I have javascript that opens the page fullscreen with the following javascript code
function fullScreen(theURL) {var newWind = window.open(theURL, '', "fullscreen=yes, scrollbars=no, title=no, menubar=no, titlebar=no");}
however when the screen opens...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.