Re: Rendering Issue with Multiple Cute Editor on the same page

  •  04-01-2009, 2:10 PM

    Re: Rendering Issue with Multiple Cute Editor on the same page

    Hi Adam,
     
    hmm, it's still not working. The modified date of the CuteEditor.dll I just downloaded is 3/26... not sure if this is the latest one. I guess the problem is that both CuteEditor and Jquery tab is trying to apply the style concurrently.
     
    I just found a workaround which is initializing the tab after a delay.
     
    This is what I have:

    $(document).ready(function() {

       //set up Tab interface
       setTimeout(setupTab, 1000);

    });

     

    function setupTab()

    {

    $("#tabs").tabs()

    }

     
     
View Complete Thread