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

[Solved] MVC Editor problems

0 Answers 82 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.
Inovestor
Top achievements
Rank 1
Inovestor asked on 12 Aug 2010, 08:23 PM
Hello,

When using the MVC Editor in a TabStrip, the Editor does not render correctly.

Here's an example of view code that shows the problem:

<% Html.Telerik().TabStrip()
       .Name("TestTabStrip")
       .Items(items =>
        {
            items.Add().Text("Test").Content(() =>
            {%>
 
                <% Html.Telerik().Editor()
                       .Name("TestEditor")
                       .Value(() =>
                       { %>
                            Test content
                        <%})
                        .Render(); %>
            <%});
        })
    .SelectedIndex(0)
    .Render();
%>

Am I forgetting something evident here?

For information, the project with which I'm testing Telerik Extensions for ASP.NET MVC is in .NET 4.0 and I've already followed Atanas Korchev instructions here which fixed a javascript problem. Could this problem still be related to .NET 4.0? Any ideas?

Thanks,
Ben
Tags
Editor
Asked by
Inovestor
Top achievements
Rank 1
Share this question
or