This question is locked. New answers and comments are not allowed.
When trying to put a ComboBox in the content of a modal Window, the textbox part of the control is in the window as expected, but the dropdown list portion of the ComboBox (when selecting the arrow) is showing up underneath the window. I've tried the ComboBox using the .Render() and without, but the same things happens.
<% Html.Telerik().Window() .Name("AdvancedStuff") .Title("Alarm Logs Advanced Options") .Content(() => {%> <% Html.Telerik().ComboBox() .Name("Locations") .AutoFill(true) .DataBinding(dataBinding => dataBinding.Ajax().Select("_AjaxLocs", "ComboBox")) .Render(); %> <%}) .Buttons(buttons => buttons.Maximize().Close()) .Draggable(true) .Width(600) .Height(600) .Resizable() .Render(); %>