From: _mike_m on
I am using a CFGRID to display information. I would like the user to be able to
select a row (selectmode="row") and then select a delete button and have the
information deleted. I know there is a built in delete if I use
selectmode="edit" but I do not wish to utilize this method. I have created a
"Show" button to display the selected record. <cfinput type="button"
name="btnShow" value="Show"
onclick="alert(mygrid.selectedItem.mycfgridcolumn);"> where "mygrid" is the
name of the grid, and "mycfgridcolumn" is the name of the cfgridcolumn. What am
I missing? Thank you in advance.