PDA

View Full Version : Rad Grid


geet40
07-16-2007, 10:45 PM
Hi

I am using rad grid to populate data.
I want to make one of the data bound columns selectable so, when clicked , it gives the details.

How to make a column (populated from database) selectable.
Instead of using a separate column as view details or select, i want to make already existing column like projectName , values selectable.

Thank you

coderapp
07-17-2007, 04:59 PM
Make the grid bound column as hyperlink

<radG:GridHyperLinkColumn DataNavigateUrlFields="ProjectID" DataNavigateUrlFormatString="completeListDetails.aspx?ProjectID={0}"
DataTextField="ProjectName" HeaderText="ProjectName" SortExpression="ProjectName"
Text="ProjectName" UniqueName="ProjectName">
</radG:GridHyperLinkColumn>