Created
December 5, 2017 05:47
-
-
Save demofan/54e86ef8a78a6d764bcb4b900a71f00a to your computer and use it in GitHub Desktop.
陽春型 CheckBox EditorTemplates
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@{ | |
bool isChecked = false; | |
if (string.IsNullOrWhiteSpace(ViewData.TemplateInfo.FormattedModelValue.ToString())==false) | |
{ | |
isChecked = !string.IsNullOrWhiteSpace(ViewData.TemplateInfo.FormattedModelValue.ToString()) && Convert.ToBoolean(ViewData.TemplateInfo.FormattedModelValue); | |
} | |
var dic = new Dictionary<string, string> { }; | |
var attributes = ViewData.MergeAttributes(dic); | |
} | |
@Html.CheckBox("", isChecked, attributes) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment