Not sure if this will help or not, but I have some code from the customadmin\<type>\list.cfm that uses a non-standard column... not the same as a button, but might help. I added this to the struct list passed into genericAdmin (I know it's depreciated... I'm just not being paid to update it, so it remains ;) ) along with the "normal" columns.
st = structNew(); st.heading = '#application.adminBundle[session.dmProfile.locale].send#'; st.align = "center"; st.columnType = 'eval'; sendobjectURL = "/tags/messageSend.cfm?objectid=##recordset.objectID[recordset.currentrow]##"; //st.value = "iif(status eq ""approved"", DE(""Can Send""), DE(""Cannot Send""))"; st.value = "iif(status eq ""approved"", DE('<a href=''#sendObjectURL#'' target=_blank><img src=""#application.url.farcry#/images/treeImages/xpIcons/webserver.gif"" border=""0""></a>'), DE(""Cannot Send""))"; //st.value = "<a href=""/tags/messageSend.cfm?objectid=##recordset.objectID##"" target=""_blank""><img src=""#application.url.farcry#/images/treeImages/xpIcons/webserver.gif"" border=""0""></a>"; arrayAppend(stGrid.aTable,st); --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "farcry-dev" group. To post to this group, send email to farcry-dev@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/farcry-dev -~----------~----~----~----~------~----~------~--~---