I am currently using a RadGrid to display a list of events and documents. One of the columns in the grid is called "Action" with a few links in it (a link to the document, a link to a 3rd party annotation tool, etc). The user wants the ability to rename the document (using the grid's edit functionality) but wants the "Rename" link to be in the Action column instead of it's own column. How do I add a GridEditCommandColumn-like action to another column or add other columns to the GridEditCommandColumn.
<
telerik:GridTemplateColumn
HeaderText
=
"Actions"
HeaderStyle-HorizontalAlign
=
"Left"
ItemStyle-HorizontalAlign
=
"Left"
>
<
ItemTemplate
>
<
asp:HyperLink
runat
=
"server"
Target
=
"_blank"
ID
=
"ViewLink"
Text
=
"View"
NavigateUrl
=
"/ViewCaseDoc.aspx?"
/>
<
asp:LinkButton
runat
=
"server"
ID
=
"AnnotationOpenLink"
Text
=
"Annotate"
/>
<%--
I want this action here
<
telerik:GridEditCommandColumn
UniqueName
=
"EditCommandColumn"
EditText
=
"Rename"
></
telerik:GridEditCommandColumn
>
--%>
</
ItemTemplate
>
</
telerik:GridTemplateColumn
>