Hello,
i have different columns in a grid and i want use the inline editing for this grid. For all the column it works fine but only the templated column can not be edited. What must I implementing to edit this templated column? In this scenario i want to edit the name property in the grid.
with best regards
Meik Napierski
i have different columns in a grid and i want use the inline editing for this grid. For all the column it works fine but only the templated column can not be edited. What must I implementing to edit this templated column? In this scenario i want to edit the name property in the grid.
with best regards
Meik Napierski
| <telerik:GridTemplateColumn |
| ReadOnly="false" |
| DataField="Name" |
| HeaderText="Name" |
| AllowFiltering="false" |
| UniqueName="Name" |
| HeaderStyle-Width="100%" |
| SortExpression="Name"> |
| <ItemTemplate> |
| <img src='<%# Eval("ImageUrl") %>' alt="" style="vertical-align: middle; margin-right: 7px;" /> |
| <%# Eval("Name") %> |
| </ItemTemplate> |
| </telerik:GridTemplateColumn> |