0

我在下面有一个简单的类,我试图用它在编辑器剑道控件中显示内容字符串。我在将属性绑定到编辑器时遇到问题。如何使用 Razor 将内容字符串绑定到 Kendo UI Web/MVC 编辑器?

public class Details
{
    public int TextId { get; set; }
    public string Content { get; set; }
}

public List<Details> TextDetails
{
    get
    {
        return mDetails;
    }
}




@model MyApp.MyModels.ContentModel

@{
    ViewBag.Title = "EditorContent";
}

<h2>Stuff To Display</h2>

@(Html.Kendo().Editor()
.Name("editor")
.Value(Model.TextDetails.Content)
//I thought I could just bind to the property....  How can I show the Content in the Editor?
)
4

1 回答 1

1

你应该这样做:Model.TextDetails.First().Content,否则一切都很好。如您所知Value(),只需要一个字符串值并呈现为 html 内容,提供适当的模型属性(字符串)不应该伤害编辑器。

于 2013-11-04T04:34:41.923 回答