Tagged Questions

<cfgrid> is a tag in ColdFusion is used to create data grids: two dimensional spreadsheet-type view. cfgrid supports simple and Ajax use.

learn more… | top users | synonyms

2
votes
2answers
204 views

How to create Master/Detail view with two datagrids in ColdFusion

In Coldfusion, I have Master and Detail data that I need to display in two separate cfgrids; like the typical Customers/Orders scenario. My cfgrids are bound to cfc functions which populate the ...
2
votes
2answers
824 views

cfgrid boolean column as Yes/No

I have a boolean type column in an html cfgrid. The data is stored in the database as 1/0 and is returned from CF as such. I want the user to see Yes/No instead of 1/0. I tried QuerySetCell, and ...
1
vote
2answers
92 views

CFGRID, CFGRIDUPDATE and extra values

I'm using CFGRID and CFGRIDUPDATE to insert values into a database. The problem is, each record needs to get an additional field that isn't in the grid. Is there any way to save that additional field ...
1
vote
0answers
75 views

cfgrid displays values instead of valuelist on edit

I have a cfgrid in CF 8 that contains a list of names in dropdown boxes using valuelists to hold the data. The values are employee keys as that is what I need to save on update and the ...
1
vote
1answer
45 views

Decimal numbers in a HTML cfgridcolumn

For some reason all my cfgrids drop the ending 0 of dollar amounts. So 104.50 is coming up as 104.5 and 332.80 is coming up as 332.8 It displays the last digit if it is not a 0. So 345.43 is fine. I ...
1
vote
2answers
141 views

Cfgrid cell contain hyperlink?

Using CF9 and have a pretty basic html cfgrid that returns results from a SQL query. There are just two columns in the grid: "ID" and "IDType". I'm looking to see if there's a way to implement some ...
1
vote
2answers
99 views

ColdFusion 9 ORM CFGird connecting several tables

When using ColdFusion ORM where you have several tables with relationships can I bind a CFC to a CFGrid to get all of the columns I would like to have displayed? Example if I have a query with 7 ...
1
vote
2answers
999 views

Change cfgrid (html) cell color based upon data

I would like to change the color of a cell based upon a status condition in cfgrid. For example: If the status of a record is Overdue, the cell will become red with OverDue in bold. If the status ...
1
vote
1answer
470 views

CFGRID with CF 9.0.1

I have a CFgrid that was working fine in CF 9.0, but now we have upgraded to 9.0.1, nothing comes up form (form.#GridName#.#Column1Name#) after the form is submitted. I made up some test code (below) ...
1
vote
1answer
660 views

How to Update a Database with CFGRID info?

I am working with a cfgrid and I'm not sure how to make it so when someone edits data in an entry it saves. <cfform> <cfgrid name = "degrees" query = "getDegrees" insert = "yes" delete = ...
1
vote
2answers
564 views

CFGRID - replace data store or filter on more than one column

ColdFusion 8 I have a cfgrid that that is based on a query. It is not bound to a cfc function because I want a scrolling grid, not a paged grid (you must supply the page number and page size if you ...
0
votes
0answers
30 views

Coldfusion Application: Framework/1 interfering with AJAX calls from Coldspring remote service

I'm having a problem trying to figure out how to make an ajax call on an application I'm writing. The application is a fw/1 with coldspring handling my beans. Right now I'm attempting to populate a ...
0
votes
1answer
46 views

Can I add a button to a CFGRID that lets a user export the grid to an XLSX file? How?

I'm a coldfusion developer working on a reporting application to display information from a CFSTOREDPROC process. I've been able to get the data from my query to display correctly in a CFGRID, and I'm ...
0
votes
2answers
88 views

How to call a javascript function when cfgrid finish loading data

I am using Coldfusion 9 cfgrid. I want to do things: 1) Call a javascript function when all data inside cfgrid finish loading. 2) Call a javascript function when we click on next page in pagination. ...
0
votes
1answer
27 views

I can't seem to copy the rows in CFGRID and paste them

I am trying to copy the text in a cfgrid but it simply wont copy anything. The cfgrid format is HTML. I do not want to make the grid editable, I just want the user to be able to cut and paste what is ...
0
votes
0answers
59 views

cfgrid - How to submit to an edit/record detail page?

I have a cfgrid that is linked to another cfgrid for some related info. For example, a "main" grid of Hospitals shows to it's right another grid of the doctors at that hospital. When I click a ...
0
votes
1answer
124 views

Fancybox does not seem to work with Coldfusion CFGRID tag

I am trying out CFGRID for the first time. While the grid itself works just fine, I can not get a Fancybox link to work inside the columns. I've added relevant code below. Basically, I do a query, ...
0
votes
1answer
69 views

Prevent duplicate update of CFgrid

I have a CFgrid with selectMode="Edit". Again I have an update method binded to the cfgrid via my cfc. However I am ble to update the grid with duplicate values. I can prevent the db from updating by ...
0
votes
1answer
227 views

clicksToEdit CFGRID

I have been searching all over the place for this and only found my question which has gone unanswer for sometime. Using ColdFusion 8's cfgrid tag. By default, the edit mode requires you to ...
0
votes
2answers
155 views

CFINPUT to update data in grid

I have CFINPUT text boxes (type= datefield) that are bound to a cfgrid. When a row is selected the input display from the grid's datastore. What I would like to do is not use the edit functionality ...
0
votes
0answers
555 views

Change icon in cell based upon data in cfgrid row

I have a ColdFusion 8 CFGRID that polls a cfc function. The function is an inner join of records that have a record id. On the data side i included an isnull so that the record id will still be a ...
0
votes
1answer
178 views

Editing and updaing cfgrid values dynamically

I need to edit the values of one (or more) column in the cfgrid by double-clicking the value and on pressing enter the cfgrid should update the db with the new value. I have seen this capability in ...
0
votes
1answer
175 views

Display CFGRID Data Store in cfoutput

I am able to display the data store from a cfgrid selected row in a form. When a row is selected, the contents of the form fields change based upon the selection. What I would like to do is take a ...
0
votes
1answer
147 views

How to rename the 'save' and 'cancel' button in cfgrid when mode=“edit”?

How to rename the 'save' and 'cancel' button in cfgrid when mode="edit"? My CF app is not even in English. If we can customize the text through insertButton and deleteButton, how come CF doesn't ...
0
votes
2answers
311 views

ColdFusion: Highlight Row in CFGrid based on condition?

I'm building an app in Coldfusion, basically it's a module that tracks when memberships expire. I'm building an index of all members, I am wanting to use cfgrid. Is there a way to specificy that ...
0
votes
3answers
398 views

changing the style on a CFGRID

hey - the cfgrid (and other cf ui) stuff makes use of the EXT JS lib... does eny one know how to change the CF grid table header colors? and or the border colors? - In the HTML grid NOT the flash or ...
0
votes
1answer
406 views

Using CFGRID with JQuery

I am encountering a problem using CFGRID with JQuery. Here are the sample codes using the CFARTGALLERY database: gridtest.cfm <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" ...
0
votes
1answer
88 views

Can a Flash-based CFGRID render basic HTML in the cells?

(I'm very new to both Flex and CF -- more a .NET/ExtJS guy, so I'm a duck out of water.) I'm tweaking someone else's CFGRID code. It uses Flash format--HTML isn't an option since it would require ...
0
votes
1answer
545 views

How can I disable href link in cfgrid cells for blank rows?

I have the following cfgrid: <cfgrid format="html" name="grid" pagesize="10" selectmode="row" striperows="yes" ...
0
votes
1answer
372 views

question about coldfusion displaying query result in a cfgrid

i have a coldfusion cfc and some methods in it. MethodA will return a cfquery object. now i use cfajaxproxy to call MethodA and get the query result in a cfm page. this cfm page already have a cfgrid ...
0
votes
1answer
214 views

cfgrid question

I have the following: <cfajaximport/> <html> <head> <script> myf = function(data,cellmd,record,row,col,store) { if(data == "Product 4") return "<b>" + data + ...