[OPEN] HtmlEditor inside ext:window

Page 1 of 2 12 LastLast
  1. #1

    [OPEN] HtmlEditor inside ext:window

    Hi Geoff,

    I would like to report a malfunction I found with IE 7, don't know with IE 6.
    The HtmlEditor, only the text-area, appears even if it is inside an ext:window set as ShowOnLoad = false.

    I thought I could solve it with z-index property, but nothing.

    All works fine with Firefox.

    Matteo

  2. #2

    RE: [OPEN] HtmlEditor inside ext:window



    Hi Matteo,


    Can you please post a simplifiied code sample demonstrating how you have the control Tags nested? I ran a few tests and have been unable to reproduce the issue you describe.


    The following code sample demonstrates a simple example with an <ext:HtmlEditor> nested inside an <ext:Window> with Show&#111;nload="false".


    <ext:Button ID="Button1" runat="server" Text="Submit">
        <Listeners>
            <Click Handler="#{Window1}.show();" />
        </Listeners>
    </ext:Button>
    
    
    <ext:Window 
        ID="Window1" 
        runat="server" 
        Collapsible="true" 
        Height="400" 
        Icon="Application" 
        Title="Title" 
        Show&#111;nload="false"
        Width="550">
        <Content>
            <ext:HtmlEditor ID="HtmlEditor1" runat="server" />
        </Content>
    </ext:Window>
    Geoffrey McGill
    Founder
  3. #3

    RE: [OPEN] HtmlEditor inside ext:window

    Hi Geoff,

    your code above works perfectly.
    Anyway I still have some problems. I'll have to better investigate.

    I sent you an e-mail with a sample project.

    Matteo
  4. #4

    RE: [OPEN] HtmlEditor inside ext:window

    Hi Geoff,

    I should have found the issue, StateProvider = Cookie is the cause.
    If people remove it (not a good idea!) the problem is solved. I attached my sample project.

    Steps to reproduce:

    1 - open the ext:window
    2 - move it, close it
    3 - refresh page, you'll see (should see) the HtmlEditor text area

    Let me know

    Thank you

    Matteo
  5. #5

    RE: [OPEN] HtmlEditor inside ext:window

    Hi Geoff,

    can you see the code in attachment? Is there still the bug?

    Thank you

    Matteo
  6. #6

    RE: [OPEN] HtmlEditor inside ext:window



    We're having this same problem using the latest code taken from the repository this morning. HtmlEditor is appearing when window is started with Show&#111;nload="false"

    Any thoughts?

    If I have time, I'll try and put an example together.
  7. #7

    RE: [OPEN] HtmlEditor inside ext:window



    Here's a screenshot for proof. (c:

  8. #8

    RE: [OPEN] HtmlEditor inside ext:window

    Hi guys,

    We will try to fix it.
    For now I can suggest next work-around


    1. Update from the SVN
    2. Set Stateful="false" for Window which contains HtmlEditor




  9. #9

    RE: [OPEN] HtmlEditor inside ext:window

    I updated and it still is not working. At least not in IE 7.

    Any thoughts?
  10. #10

    RE: [OPEN] HtmlEditor inside ext:window

    Hi David,

    Can you post a sample and steps to reproduce? I used the test code which Matteo posted. With his code that work-around works well.


Page 1 of 2 12 LastLast

Similar Threads

  1. Replies: 5
    Last Post: Nov 02, 2011, 6:20 AM
  2. Replies: 2
    Last Post: Jun 20, 2011, 4:18 PM
  3. Replies: 4
    Last Post: May 27, 2010, 6:28 PM
  4. [OPEN] HtmlEditor and Window
    By davidhoyt in forum 1.x Legacy Premium Help
    Replies: 0
    Last Post: Jan 14, 2009, 5:28 PM
  5. [OPEN] HtmlEditor malfunction
    By methode in forum Bugs
    Replies: 2
    Last Post: Nov 06, 2008, 4:14 AM

Posting Permissions