Hi,
I was hoping to to change a GridBoundColumn row value to be a LinkButton when the Edit button is clicked.
Here's the column:
Then I'm guessing the change needs to take place when the EditCommand event is raised
So how would I find the "NameColumn" and change its value to a LinkButton on Edit?
Also, is it possible to get the Row DataItem on the EditCommand event? I wasn't able to find a way to do this.
I was hoping to to change a GridBoundColumn row value to be a LinkButton when the Edit button is clicked.
Here's the column:
<
rad:GridBoundColumn
DataField
=
"FileName"
UniqueName
=
"NameColumn
" />
Then I'm guessing the change needs to take place when the EditCommand event is raised
void
ListGrid_EditCommand(
object
source, GridCommandEventArgs e)
So how would I find the "NameColumn" and change its value to a LinkButton on Edit?
Also, is it possible to get the Row DataItem on the EditCommand event? I wasn't able to find a way to do this.