RadEditor layout issue in grid GridTemplateColumn
U have some funky layout issues in chrome and IE11 with RadEditor in a grid column..
When i open a row to edit or insert, the min-height on the RadEditor is very large over 2000px and there is a sctrroll bar in the contents and the text is not selectable and it is very large, if I refresh it works the second time.
I have attached 2 separate images to show you.
here is the code for the column:
U have some funky layout issues in chrome and IE11 with RadEditor in a grid column..
When i open a row to edit or insert, the min-height on the RadEditor is very large over 2000px and there is a sctrroll bar in the contents and the text is not selectable and it is very large, if I refresh it works the second time.
I have attached 2 separate images to show you.
here is the code for the column:
<telerik:GridTemplateColumn DataField="pages_body" FilterControlAltText="Filter pages_body column" HeaderText="Pages Body" SortExpression="pages_body" UniqueName="pages_body" Visible="false"> <ItemTemplate> <asp:Label ID="lblField1" CssClass="text" runat="server" Text='<%# Eval("pages_body") %>'></asp:Label> </ItemTemplate> <EditItemTemplate> <telerik:RadEditor ID="gridEditor_Body" runat="server" Content='<%# Bind("pages_body") %>' ToolsFile="PagesFile.xml" OnClientCommandExecuting="OnClientCommandExecuting"> <DocumentManager ViewPaths="~/Images/UserFiles" UploadPaths="~/Images/UserFiles" DeletePaths="~/Images/UserFiles" SearchPatterns="*.pdf" MaxUploadFileSize="4096000" /> <ImageManager ViewPaths="~/Images/UserFiles" UploadPaths="~/Images/UserFiles" DeletePaths="~/Images/UserFiles" SearchPatterns="*.gif,*.png,*.jpg" /> </telerik:RadEditor> </EditItemTemplate> </telerik:GridTemplateColumn>