Kendo-ui MVC PopUp editor: How to hide fields

后端 未结 1 1613
闹比i
闹比i 2021-01-05 19:41

I\'m using Kendo ASP.NET MVC and I would like to have some control over the edit form.

Things I would like to do:

  • Hide my ID field
  • Change my P
相关标签:
1条回答
  • 2021-01-05 20:04

    When you click edit, Kendo uses the default EditorTemplate for the object. If you're not familiar how editor templates work, check this article.

    You have two ways of solving it, either by creating a custom view editor templates that only lists the fields you want. Or (and this is simpler and preferred method), in many cases you can get away with the default editor template and control which fields are rendered (and how) using metadata on the object. You can hide individual properties by tagging them with [ScaffoldColumn(false)] attribute. In terms of controlling the types of editors that show up, you can accomplish this by tagging your properties with [DataType(DataType.Date)] or [DataType(DataType.Text)]

    0 讨论(0)
提交回复
热议问题