Hello again! :o
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 = "yes"
width = "500"
height = "150"
insertButton = "New Degree"
deleteButton = "Delete Degree"
colHeaderBold = "Yes"
selectColor = "##006633"
selectMode = "edit"
>
<cfgridcolumn name = "Terminal"
values = "Yes, No" >
<cfgridcolumn name = "Degree"
values = "B, M, D"
valuesDisplay = "Bachelors, Masters, Doctorate">
<cfgridcolumn name = "Name">
<cfgridcolumn name = "Specialization">
<cfgridcolumn name = "Year">
<cfgridcolumn name = "Institution">
<cfgridcolumn name = "Transcript"
values = "Yes, No" >
</cfgrid>
</cfform>
I know there is the cfgridupdate
tag but I'm unsure of where to put it. Does it submit like a regular form?
I know this is a simple question, but I couldn't find an answer that didn't use binding on the web. (Which I can't use...binding that)
Using Coldfusion 8. :) (Note: binding doesn't work due to IT department -_- )