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
120
Using the editor in a formview
posted

I want to use the WebHtmlEditor in a FormView.

The html is bound to the Text property of the editor.

 

                        <ighedit:WebHtmlEditor  ID="ctlEditInfoPubliekHtml"
                                                Text='<%# Bind("HtmlInfo") %>'
                                                runat="server"
                                                Width="500px"
                                                SkinID="klein"
                                                UploadedFilesDirectory="~/Test">

 

Everything works fine except the 'insert image' button.

When using the editor outside the EditItemTemplate it works fine, but when using it inside the template I get the same formview in the popup window when using the image button.

I've narrowed the scope to a small aspx with one formview and the editor in the EditItemTemplate, so it should not be to difficult to reproduce.

Im using version 7.1.20071.1045

 

Parents
No Data
Reply
  • 120
    posted

    I tried a work-around an put the whole editor in a popup-extender.

    Now the 'insert image' works nice, but buttons with an arrow like color and table buttons don't seem to work anymore.

    Ik say 'seem' because they generate the correct popups, but with z-index 99999, while the popup-extender generates 100001 (so close), so no visualisation.

     

    Is there a way to change the z-index of those popups?

Children