Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
25
WebHtmlEditor not editable in Chrome or Firefox
posted

Hello. The website I am working on uses the WebHtmlEditor for user input.

The control works fine on IE, and you can enter text, and edit its properties using the editor.

On Chrome & Firefox, the editor appears but does not you can not type in it, or edit and properties.

Here is my HTML table the control is in:

 <table>

                                <tr>

                                    <td>

                                        Value:

                                    </td>

                                    <td>

                                        <asp:TextBox ID="ValueTextBox" runat="server" Width="250px"></asp:TextBox>

                                    </td>

                                </tr>

                                <tr>

                                    <td>

                                        Long Value:

                                    </td>

                                    <td>

                                        <div>

                                        <ighedit:WebHtmlEditor ID="HtmlEditor1" runat="server" 

                                            ImageDirectory="../ig_common/Images/htmleditor/" 

                                            UploadedFilesDirectory="../ig_common/upload">

                                        </ighedit:WebHtmlEditor>

                                            </div>

                                    </td>

                                </tr>

                                <tr>

                                    <td>

                                    </td>

                                    <td>

                                    <asp:Button ID="buttonOK" runat="server" OnClientClick="return" Text="OK" 

                                        UseSubmitBehavior="False" />

                                    &nbsp;&nbsp;

                                    <asp:Button ID="buttonCancel" runat="server" CausesValidation="False" 

                                        OnClientClick="return" Text="Cancel" UseSubmitBehavior="False" />

                                    </td>

                                </tr>

                            </table>

Does anyone have any ideas whats going on? Thanks!