Questions tagged [cfgrid]

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

66 questions
1
vote
0 answers

How to hide the cfgrid default bottom toolbar?

As coldfusion is upgraded for my current application. The earlier code for extjs isn't working anymore Could you suggest the latest version for the below implementations? var grid =…
1
vote
2 answers

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 of a record is Due (within 30 days), the cell will…
vasquezmi
  • 41
  • 2
  • 5
1
vote
1 answer

Object doesn't support property or method 'AddFill'

I am having a problem with my programs Coldfusion Grid's on multiple pages, where the grids will not display. Originally we were getting an "'EXT' is undefined error", however on updating our scripts file we are now getting an "Object doesn't…
danninta
  • 137
  • 6
1
vote
1 answer

ColdFusion CFGrid: Validating Input via JQuery

I have a CFGrid which allows editing of data. What I need to do is to validate user inputs via jQuery using some onblur or onchange events. But my jQuery code is unable to access the CFGrid elements using Classes. Here is a code snippet:
IrfanClemson
  • 1,699
  • 6
  • 33
  • 52
1
vote
0 answers

CFGrid combobox list getting mixed up with other grids in the page

Currently we have ColdFusion 2016 Update 1 installed on our deployed server. After we upgraded our CF version from 9 to 2016, all cfgrids combobx columns started behaving a bit strange. Grid combobox columns are not displaying the exact values…
1
vote
1 answer

Using CFGRID with JQuery

I am encountering a problem using CFGRID with JQuery. Here are the sample codes using the CFARTGALLERY database: gridtest.cfm …
lawrencem49
  • 67
  • 2
  • 10
1
vote
1 answer

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.
Bri
  • 729
  • 2
  • 17
  • 38
1
vote
2 answers

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 use BIND).. I can figure out how to make it filter…
Casuzen
  • 169
  • 2
  • 12
1
vote
2 answers

page automatically scrolls to cfgrid

I have a page that is tall enough that it scrolls vertically. When it finishes loading, the browser automatically scrolls to the bottom of the page where a cfgrid element lives. It happens in IE, Chrome and Firefox. I've narrowed the cause down to…
user1286322
  • 271
  • 1
  • 2
  • 8
1
vote
1 answer

Why does cfGrid appear to be passing the incorrect data?

I've been asked to use cfGrid to allow the editing of an uploaded spreadsheet before final commit to the database. I was familiar with cfGrid back in the CF 5/6 days, but have not used it recently. So I may simply be misinterpreting the data. My…
Nicholas
  • 1,974
  • 4
  • 20
  • 46
1
vote
2 answers

cfgrid change cell color

After an exhaustive search for a solution, what I have come up with isn't working as the cell color isn't changing color. The alerts are alerting as expeted and correctly. Anyone have a clue what might be wrong? formatStatus =…
RockDad
  • 65
  • 1
  • 8
1
vote
0 answers

CFGrid boolean columns submitting empty strings

I have a table with 5 boolean columns, I am using HTML format CFGrid to view and edit the data, however when a user submits a new row the boolean fields all submit with empty strings, regardless of state (checked or not), when I switch the format…
MPowers
  • 23
  • 3
1
vote
0 answers

cfgrid format=flash is not displaying the result

I was trying with cfgrid tag with format=flash for displaying query result.Its not displaying the output but generating the grid. the sample code i tried is: SELECT Course_ID, Dept_ID,…
shemy
  • 573
  • 1
  • 5
  • 15
1
vote
0 answers

CFGRID Filtering with Checkbox

I have created (with some help) a CFGRID with a Search Filter. This CFGRID displays a checkbox to select an ID. This CFGRID is editable, being that the checkbox can be selected to be passed as a selection list the only problem is that after the…
1
vote
2 answers

cfgridcolumn mask to format numbers

According to the docs, I should be able to use the mask attribute to format my column: I have a salary amount I want to show as $100,000 $80,000 $5,000 Any ideas why its not…
Dale Fraser
  • 4,623
  • 7
  • 39
  • 76