Copy link to clipboard
Copied
I'm using a cfgrid to make a table. If I put in a select = no statement like:
<cfgridcolumn name = "bedNum" header = "Room" headerAlign = "center" width = "75" select = "no">
it returns an error:
As soon as I take it out, the grid works fine when I submit an update of a row. All i'm trying to do is not allow users to edit certain fields that are in the table but be able to alter others.
Copy link to clipboard
Copied
The documentation for the select attribute suggests that it's related to the selectmode attribute of the cfgrid tag.
Copy link to clipboard
Copied
there is in the cfgrid tag the ability to make the table editable. Then in the cfgridcolumn tag you are supposed to be able to make fields so that users can't selecct them. That is what I am doing. It works until I try to update one of the rows.