I need to have a property show up when an item is being edited, but I don't have an ItemTemplate for it. The reason for it, is because I am using GroupByExpressions to show the values of those records. In order to get those properties to show up in Edit mode, here's what I did:
But, I can still see that it's rendering a column (but an empty one). What would be a better approach?
<telerik:GridTemplateColumn HeaderText="Report Period" UniqueName="ReportPeriodName" Visible="False" Display="False"> <EditItemTemplate> <asp:DropDownList runat="server" ID="ddlReportPeriod" AppendDataBoundItems="True"> <asp:ListItem Text="-- Select Reporting Period --" Value="" /> </asp:DropDownList> </EditItemTemplate></telerik:GridTemplateColumn>But, I can still see that it's rendering a column (but an empty one). What would be a better approach?
