2015-08-03 111 views
1

如何使用kendo在文本框中隱藏密碼。通常我可以通過使用PasswordFor來使用[Datatype(Datatype.Password)]屬性來隱藏。但在劍道,我無法使用屬性來隱藏密碼。Kendo UI MVC密碼

回答

7

你可以用流利的語法:

@(Html.Kendo() 
    .TextBoxFor(m => m.Password) 
    .HtmlAttributes(new { type = "password" })) 
+0

非常感謝你:) –