Help with CFGrid

Posted: 05-05-2005, 06:44 PM
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

Reply With Quote

Responses to "Help with CFGrid"

OldCFer
Guest
Posts: n/a
 
Re: Help with CFGrid
Posted: 05-05-2005, 07:07 PM
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.


Reply With Quote
 
LinkBack Thread Tools Search this Thread Display Modes
Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are Off
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
cfselect in cfgrid rckhppr Coldfusion Flash Integration 3 05-11-2007 03:09 PM
CFGRID Pagination Sir Rawlins Coldfusion Flash Integration 0 04-07-2006 09:16 AM
CFGRID Properties reya276 Coldfusion Flash Integration 1 02-01-2006 02:48 PM
cfgrid Chikowski Coldfusion Flash Integration 10 07-22-2005 06:49 PM
datagrid... cfgrid SilentBob'secretfusion Coldfusion - Advanced Techniques 0 02-23-2005 02:32 PM