如何在同一视图中为基本 ViewModel 和派生 ViewModel 使用两个不同的 EditorTemplate?

发布于 2024-12-09 06:31:05 字数 1601 浏览 0 评论 0原文

我有很多从基本 ViewModel 派生的 ViewModel。

是否可以在同一个视图中为来自基本 ViewModel 的派生 ViewModel 部分显示 EditorTemplate,并为派生部分显示不同的模板?如果是,是如何完成的?

基础 ViewModel:

public class ShowQuestionViewModel
    {
        public int Question_ID { get; set; }
        public String Question_Wording { get; set; }
        public String Question_Type { get; set; }
        public String Question_Number { get; set; }
        public Boolean Visible { get; set; }
        public Boolean IsAnswered { get; set; }

    }

派生 ViewModel:

public class ShowMatrixQuestionViewModel : ShowQuestionViewModel
    {
        public Dictionary<MatrixRows, List<MatrixColumns>> columnrow;
        public List<MatrixColumns> columns;
        public List<MatrixRows> rows;

        public ShowMatrixQuestionViewModel()
        {
            columns = new List<MatrixColumns>();
            rows = new List<MatrixRows>();
            columnrow = new Dictionary<MatrixRows, List<MatrixColumns>>();
        }
    }

    public class MatrixColumns
    {
        public int Column_ID { get; set; }
        public int Column_Number { get; set; }
        public String Column_Description { get; set; }
        public Boolean IsAnswer { get; set; }
    }

    public class MatrixRows
    {
        public int Row_Id { get; set; }
        public String Row_Number { get; set; }
        public String Row_Description { get; set; }
    }

因此,当我使用 EditorFor(x => ShowMatrixQuestionViewModel) 时,我想对来自 ShowQuestionViewModel 的属性使用特殊编辑器。

I have a lot of ViewModels that derive from a base ViewModel.

Is it possible to display an EditorTemplate for the part of the derived ViewModel that comes from the base ViewModel, and a different template for the derived part, all in the same View? If yes, how is it done?

Base ViewModel:

public class ShowQuestionViewModel
    {
        public int Question_ID { get; set; }
        public String Question_Wording { get; set; }
        public String Question_Type { get; set; }
        public String Question_Number { get; set; }
        public Boolean Visible { get; set; }
        public Boolean IsAnswered { get; set; }

    }

Derived ViewModel:

public class ShowMatrixQuestionViewModel : ShowQuestionViewModel
    {
        public Dictionary<MatrixRows, List<MatrixColumns>> columnrow;
        public List<MatrixColumns> columns;
        public List<MatrixRows> rows;

        public ShowMatrixQuestionViewModel()
        {
            columns = new List<MatrixColumns>();
            rows = new List<MatrixRows>();
            columnrow = new Dictionary<MatrixRows, List<MatrixColumns>>();
        }
    }

    public class MatrixColumns
    {
        public int Column_ID { get; set; }
        public int Column_Number { get; set; }
        public String Column_Description { get; set; }
        public Boolean IsAnswer { get; set; }
    }

    public class MatrixRows
    {
        public int Row_Id { get; set; }
        public String Row_Number { get; set; }
        public String Row_Description { get; set; }
    }

So, when i use EditorFor(x => ShowMatrixQuestionViewModel), i want to use a special editor for the properties that come from ShowQuestionViewModel.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

初与友歌 2024-12-16 06:31:05

您可以创建一个单独的编辑器模板:

@model ShowMatrixQuestionViewModel
@Html.EditorForModel()

然后定义一个自定义编辑器模板~/Views/Shared/EditorTemplates/ShowMatrixQuestionViewModel.cshtml,您可以在其中自定义所有属性,包括基本类型的属性。

You could create a separate editor template:

@model ShowMatrixQuestionViewModel
@Html.EditorForModel()

and then define a custom editor template ~/Views/Shared/EditorTemplates/ShowMatrixQuestionViewModel.cshtml where you could customize all properties including those for the base type.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文