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

Control on Advanced Insert dialog does not show in Internet Explorer 10

0 Answers 23 Views
Scheduler
This is a migrated thread and some comments may be shown as answers.
Oneview Corp
Top achievements
Rank 1
Oneview Corp asked on 09 Oct 2015, 06:08 PM

Hi,

We have a custom drop down box in the AdvancedInsert dialog that lists the services someone can select from. It works in Chrome, Firefox and IE 11 on Windows 8. But it does not show up in Internet Explorer 10 or 11 on Windows 7. Only the first line of text from the combo box shows up and no down arrow that indicates that it is a combo box.

                 RadComboBox appointmentType = new RadComboBox();

                    appointmentType.Items.Add(new RadComboBoxItem("1. Existing Client: (15 min)"));
                    appointmentType.Items[1].Value = "15";
                    appointmentType.Items.Add(new RadComboBoxItem("3. New Client: (60 min)"));
                    appointmentType.Items[3].Value = "60";

                subject.Parent.Controls.Add(appointmentType);

                appointmentType.Label = "Service ";
                appointmentType.Width = Unit.Percentage(90);
                appointmentType.Style.Add("position", "absolute");
                appointmentType.Style.Add("top", "40px");
                appointmentType.Style.Add("left", "30px");
                //appointmentType.Style.Add("z-index", "0");​

Could you please help us resolve this?

thanks

 

No answers yet. Maybe you can help?

Tags
Scheduler
Asked by
Oneview Corp
Top achievements
Rank 1
Share this question
or