Try our conversational search powered by Generative AI!

ControlWrapper.aspx kills edit tree connection

Vote:
 

Using Community 3.1 the connection between the left and right frame of edit mode is lost whenever a module in the Community tab is selected (so a reload is required before pages can be opened and edited). I suppose the ControlWrapper.aspx lacks some javascript or something that is used to keep the frames connected. Can I add it? How?

#32694
Sep 14, 2009 9:19
Vote:
 

Yes, you can add something like this javascript (which is there in the current version):

 

    <script type='text/javascript'>
        function onNavigate(newPageLink)
        {
            return -1;
        }
        function onCommand(newCommand)
        {
            return -1;
        }
        
        function TestOfficeAddin()
        {
            if(!document.getElementById("componentTable"))
            {
                return;
            }
        }
        
        function onLoad()
        {
            if(window.TestClientTools)
            {
                TestClientTools();
            }
            if(window.TestOfficeAddIn)
            {
                TestOfficeAddIn();
            }
        }    
    
    </script>   

#32708
Sep 14, 2009 15:20
This thread is locked and should be used for reference only. Please use the Legacy add-ons forum to open new discussions.
* You are NOT allowed to include any hyperlinks in the post because your account hasn't associated to your company. User profile should be updated.