Advertisement
Guest User

Untitled

a guest
Nov 26th, 2014
155
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. @model int?
  2.  
  3.  
  4. @(Html.Kendo().IntegerTextBoxFor(m => m)
  5. .HtmlAttributes(new { placeholder = @ViewData.ModelMetadata.DisplayName, @class = "form-control ra" })
  6. .Min(int.MinValue)
  7. .Max(int.MaxValue)
  8. )
  9.  
  10. @model decimal?
  11.  
  12. @(Html.Kendo().NumericTextBoxFor(m => m)
  13. .HtmlAttributes(new { @class = "ra" })
  14. )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement