Try our conversational search powered by Generative AI!

Any hotfix-patches available for Composer 4R2?

Vote:
 

We are using Composer 4R2 with CMS 6R2, but are experiencing some issues in IE10. In composer edit mode, it is impossible to drag the composer functions anywhere. Also, once in composer edit mode, the Publish/Cancel button for the article itself does not work.

We don't want to spend to much time on this, since using a different browser is an acceptable workaround, and since we are planning on upgrading to EPiServer 7.

All I want to know is if there are any hotfix-patches available for Composer 4R2.

#72996
Jul 03, 2013 16:20
Vote:
 

In my case I've just added some meta tag to force IE to render in IE8 compatible mode (when in edit mode or Composer on page edit):

protected override void OnInit(EventArgs e)
{
    base.OnInit(e);            

    //It's important that _extensionHandler initialized after base.OnInit.
    _extensionHandler.Initialize(this);

    if (_extensionHandler.ViewMode == ExtensionGeneric.ViewMode.ExtensionEditOnPageMode || _extensionHandler.ViewMode == ExtensionGeneric.ViewMode.ExtensionEditMode)
    {
        HtmlMeta httpEquiv = new HtmlMeta();
        httpEquiv.HttpEquiv = "X-UA-Compatible";
        httpEquiv.Content = "IE=EmulateIE7";
        Header.Controls.Add(httpEquiv);                        
    }
}

Hope this helps.

Frederik

#73007
Jul 03, 2013 22:04
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.