Questions tagged [cfgridcolumn]

8 questions
3
votes
2 answers

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 couldn't get it to work. The form is editable,…
Gene R
  • 1,555
  • 5
  • 19
  • 32
3
votes
2 answers

Coldfusion: Simple cfgridupdate validation

I trying to use a very simple CFGRID (with CFGRIDUPDATE) but not allow NULLS.
nope_four
  • 492
  • 1
  • 4
  • 16
1
vote
1 answer

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 have tried using the currency type but that only…
Sequenzia
  • 2,333
  • 9
  • 40
  • 59
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
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 - how to sort a column of numbers numerically

I'm using a cfgrid control on Coldfusion 9.01 to display a query recordset with several columns of numbers. My grid is format="html" and a query as the datasource. A partial list of my grid columns are as follows:
garyv
  • 187
  • 1
  • 9
0
votes
1 answer

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 redesigning the entire interface around the grid. Tha…
richardtallent
  • 34,724
  • 14
  • 83
  • 123
0
votes
1 answer

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

I have the following cfgrid:
jacky.wu