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

Font Family and Font size drop downs will not expand

4 Answers 66 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 31 Aug 2010, 05:05 PM
These work fine in my sandbox but do not work when I integrate them into my solution.  Am I missing a set up step to put the defaults in?  I noticed that when I click in the combobox and hit the up/down arrows I can scroll through the options but can't get the drop down to work.

4 Answers, 1 is accepted

Sort by
0
Atanas Korchev
Telerik team
answered on 01 Sep 2010, 07:00 AM
Hi Brian Adle,

All dropdowns of the editor should work out of the box. I guess we need more information how to reproduce this problem at our side. Could you provide a sample project? You need to open a support ticket to do so.

All the best,
Atanas Korchev
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 01 Sep 2010, 04:18 PM
Display the editor in a jQuery UI Dialog and you can reproduce it.  I did a sandbox project and in the index.aspx file just put this:

<button id="btn" onclick="$('#dialog').dialog();">Test</button>

    <div id="dialog">
        <% Html.BeginForm(); %>
        <% Html.Telerik().Editor()
                    
                        .Name("Editor")
                        .Value("")
                        .Render(); %>
        <% Html.EndForm(); %>
    </div>

And the displayed editor doesn't have functioning drop downs.
0
Atanas Korchev
Telerik team
answered on 01 Sep 2010, 04:24 PM
Hello Brian Adle,

We have not tested the editor with the jQuery UI dialog so a conflict is possible. We will investigate this further.

Regards,
Atanas Korchev
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
Accepted
Atanas Korchev
Telerik team
answered on 02 Sep 2010, 10:29 AM
Hello Brian Adle,

The problem stems from the higher z-index of the dialog. Setting the z-index of the editor should help:

<% Html.Telerik().Editor()
                .HtmlAttributes(new {style="z-index:2000"})
                .Name("Editor")
                .Value("")
                .Render();
%>


All the best,
Atanas Korchev
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
Tags
Editor
Asked by
Brian Adle
Top achievements
Rank 1
Answers by
Atanas Korchev
Telerik team
Brian Adle
Top achievements
Rank 1
Share this question
or