Ask a Question related to Coldfusion - Getting Started, Design and Development.
-
Carolyn.Hajnasiewicz #1
Help with CFGrid
How can I get a hyperlinked file deleted from the server when the delete action
occurs in the Grid, which the action is also followed through to the supporting
Access Database? (possibly this is a question for an Access user group... not
sure)
Also is there a way to enable deleting multiple rows of data in a CFGrid?
Thank you
Carolyn.Hajnasiewicz Guest
-
cfgrid
I use a ldap to populate my cfgrid. Therefore, I do not use any cfcolumns within the cfgrid. How would I adjust the widths of the columns to fit... -
cfselect in cfgrid
Does anyone know how to place a cfselect element in a cfgrid or if it is even possible? I need an editable grid. It would be ideal if one of the... -
cfGrid problems
Hi all, I can't get the flash version of cfGrid to display when I assign it the onChange attribute. If I remove it, it works fine. I get a... -
Flash CFGRID
I'm unable to update a table when using the <cfgridupdate> tag. My <cfgrid> is correctly populated with a query and I can change information on the... -
<CFGRID>
I'm experiencing a strange behavior using cfgrid format="applet". If the selectmode="Edit" and I do specify a selectcolor, the field clicked on will... -
OldCFer #2
Re: Help with CFGrid
Not sure exactly what you want, but:
<CFLOOP INDEX="Counter" FROM="1"
TO="#ArrayLen(Form.Gridname.rowstatus.action)#">
<CFIF FORM.Gridname.ROWSTATUS.ACTION[COUNTER] IS "D">
#Form.GridName.Original.ColumnName[Counter]#
</CFIF>
</CFLOOP>
#Form.GridName.Original.ColumnName[Counter]# holds the value of the grid
value
being deleted. Maybe it will get you started.
OldCFer Guest



Reply With Quote

