I'm trying to use the GridHTMLEditorColumnEditor control with my grid but it just renders as a simple textbox when switching to edit mode. The other external column editors I use work just fine. Attached is a screenshot of what it looks like when it renders. I couldn't find much documentation on this control. Do I need to set some other properties or something?
<telerik:RadGrid ID="rgCesWeeklyLogs" runat="server" AutoGenerateColumns="False" GridLines="None" Skin="Windows7" AllowPaging="true" AllowSorting="true" onneeddatasource="rgCesWeeklyLogs_NeedDataSource" onupdatecommand="rgCesWeeklyLogs_UpdateCommand" ondatabound="rgCesWeeklyLogs_DataBound"> <MasterTableView CommandItemDisplay="None" DataKeyNames="Id"> <CommandItemSettings ExportToPdfText="Export to Pdf" /> <Columns> <telerik:GridTemplateColumn UniqueName="EditLog"> <ItemTemplate> <asp:ImageButton ID="btnEdit" runat="server" ImageUrl="~/Images/edit-icon.jpg" CommandName="Edit" ToolTip="Edit Record" /> </ItemTemplate> </telerik:GridTemplateColumn> <telerik:GridBoundColumn DataField="ActivityDate" ReadOnly="true" DataFormatString="{0:d}" /> <telerik:GridBoundColumn DataField="DayOfWeek" ReadOnly="true" HeaderText="Day of Week" /> <telerik:GridBoundColumn DataField="Activity" HeaderText="Planned Activity" ColumnEditorID="GridHTMLEditorColumnEditor1" /> <telerik:GridBoundColumn DataField="Outcome" HeaderText="Outcome" ColumnEditorID="ActivityEditor" /> <telerik:GridBoundColumn DataField="LastUpdated" HeaderText="Last Updated" ReadOnly="true" /> </Columns> </MasterTableView></telerik:RadGrid><telerik:GridTextBoxColumnEditor ID="ActivityEditor" TextBoxMode="MultiLine" TextBoxStyle-Width="500px" TextBoxStyle-Height="200px" runat="server" /><br /><telerik:GridHTMLEditorColumnEditor ID="GridHTMLEditorColumnEditor1" runat="server"></telerik:GridHTMLEditorColumnEditor>