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

Editor Font Family and Font Size dropdowns not working in Window

2 Answers 89 Views
Editor
This is a migrated thread and some comments may be shown as answers.
This question is locked. New answers and comments are not allowed.
Brian Adle
Top achievements
Rank 1
Brian Adle asked on 19 Nov 2010, 04:13 PM
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
<% 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();                      
%>

2 Answers, 1 is accepted

Sort by
0
Hristo Germanov
Telerik team
answered on 22 Nov 2010, 05:20 PM
Hello Brian Adle,

Thank you for contacting us.

Attached is a sample project reproducing your issue and there is no such problem. Could you please examine it and modified to reproduce your issues so I will be able to better assist you?

All the best,
Hristo Germanov
the Telerik team
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items
0
Brian Adle
Top achievements
Rank 1
answered on 22 Nov 2010, 07:22 PM
EDIT:

Updated to 2010.3.1110 and all is right as rain.
Tags
Editor
Asked by
Brian Adle
Top achievements
Rank 1
Answers by
Hristo Germanov
Telerik team
Brian Adle
Top achievements
Rank 1
Share this question
or