Hello,
I am using RadCombobox and DatePicker in my project. I create the controls at runtime (code behined). Also i have downloaded the latest version of the rad:controls. When i run my project in FireFox everything goes fine, but in IE 8 the controls show a weired behavior. It seems that either skins dont apply or what so ever. i am sending the screen shots for how radcombobox and date picker appears. Also there is another issue when i uplaod my project on live, the rad combobox doesnot work properly, i.e, neither it postback nor allow me to make any selection of items (as i have use checkboxes with items). I am using the trial version.
Below is the code where i create both the controls.
For DatePicker
RadDatePicker rdDateTime = new RadDatePicker();
rdDateTime.ID =
"rdDateTime" ;
rdDateTime.EnableTyping =
false;
rdDateTime.Width = 150;
For Combobox:
RadComboBox ddlValue = new RadComboBox();
ddlValue.EnableEmbeddedBaseStylesheet =
true;
ddlValue.EnableEmbeddedSkins =
true;
ddlValue.Skin =
"Outlook";
ddlValue.Width = 150;
ddlValue.ID = "ddlValue" ;
ddlValue.ItemDataBound += new RadComboBoxItemEventHandler(ddlValue_ItemDataBound);
ddlValue.AutoPostBack = true;
ddlValue.SelectedIndexChanged +=
new RadComboBoxSelectedIndexChangedEventHandler(ddlValue_IndexChanged);
Now kindly plz tell me how could the look of controls be set.
Thanks in advance