This is a migrated thread and some comments may be shown as answers.

LinkManager Missing OK button in Internet Explorer 11

1 Answer 59 Views
Editor
This is a migrated thread and some comments may be shown as answers.
Jon
Top achievements
Rank 1
Jon asked on 24 Apr 2014, 06:46 AM
I use version 2011.1.413.35
LinkManager is missing OK button in Internet Explorer 11 but the buttons are visible in Firefox and Chrome.

1 Answer, 1 is accepted

Sort by
0
Jon
Top achievements
Rank 1
answered on 24 Apr 2014, 06:48 AM
The following code fixed the problem:

        protected override void OnInit(EventArgs e)
        {
            base.OnInit(e);
            this.Page.PreRenderComplete += new EventHandler(Page_PreRenderComplete);
        }

        void Page_PreRenderComplete(object sender, EventArgs e)
        { // This method is for fixing a bug with the LinkManager in Internet Explorer 11.
            DialogDefinition linkManagerDialog = radEditor.GetDialogDefinition("LinkManager");
            linkManagerDialog.Height = System.Web.UI.WebControls.Unit.Pixel(390);
        }
Tags
Editor
Asked by
Jon
Top achievements
Rank 1
Answers by
Jon
Top achievements
Rank 1
Share this question
or