I have a radgrid to dsiplay employee information. I would like to display the name field as a link, and click the name to trigger the edit command. Does anyone know how to do it?
You can use a GridButtonColumn and set its CommandName as Edit and if you want to edit that field you can have it in a BoundColumn with display as false. Please try the below code snippet:
I don't want to use the GridButtonColumn either. I want to have the column data bound to the name field and displayed like a link. Click the name will bring up the Edit form or pop-up window.