Hi Telerik. I am trying to change the zIndex on a RadComboBox drop down list inside a RadWindow. I have had to override some of the zIndex values on the elements due to the application interface requirements, and I have run into a few minor issues. I am currently able to fix the Calendar elements with the following technique:
Sys.Application.add_load(changeZIndex);
function changeZIndex() {
Type.registerNamespace(
"Telerik.Web.UI.Calendar");
window.Telerik.Web.UI.Calendar.Popup.zIndex = 14000;
}
Is there a way to do this same technique with the RadComboBox to get the list to show up in front of the RadWindow?
Type.registerNamespace(
"Telerik.Web.UI.RadComboBox");
window.Telerik.Web.UI.RadComboBox.???.zIndex = 14000;
Thanks in advance for your assistance.
Tim