This question is locked. New answers and comments are not allowed.
I replaced my jQuery UI Dialog with the Telerik Window and now font family and font size drop downs aren't working. I can see a single line drop down from the left side of the combo boxes but no options.
Code
Code
<% Html.Telerik().Window().Name("TextEditorWindow").Title("Edit Text").Visible(false).Resizable(resizing => resizing .Enabled(false)).Modal(true).Buttons(b=> b.Close()).Draggable(false).Effects( fx=> fx.Expand()).Height(330).Width(760).Content( () => { Html.BeginForm(); Html.Telerik().Editor() //.HtmlAttributes(new {style="z-index:2000"}) // required for jQuery UI Dialog .Name("WidgetTextEditor") .Value("") .Tools(tools => tools.Clear() // remove the existing tools from the default configuration .Bold() .Italic() .Underline() .Strikethrough() .Separator() .FontName() .FontSize() .Separator() .FontColor() .BackColor() .Separator() .JustifyLeft() .JustifyCenter() .JustifyRight() .JustifyFull() .Separator() .InsertUnorderedList() .InsertOrderedList() .Separator() .InsertImage() ) .Render(); %> <div style="width:100%; text-align:right;"> <input type="button" id="btnSaveText" title="Save and Close" value="Save and Close" /> <input type="button" id="btnCancelText" title="Cancel" value="Cancel" /> </div> <% Html.EndForm(); }).Render(); %>