kreta/KretaWeb/Views/Shared/EditorTemplates/Integer.cshtml
2024-03-13 00:33:46 +01:00

7 lines
No EOL
157 B
Text

@model int?
@(Html.Kendo().IntegerTextBoxFor(m => m)
.HtmlAttributes(new { style = "width:100%" })
.Min(int.MinValue)
.Max(int.MaxValue)
)