Advertisement
Guest User

Untitled

a guest
Jun 24th, 2019
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.96 KB | None | 0 0
  1. @Html.AntiForgeryToken()
  2. <div class="modal-body">
  3. <div class="form-horizontal">
  4. @if (Model != null)
  5. {
  6. @Html.HiddenFor(model => model.FileGrossMarginID)
  7. }
  8. <div class="form-group">
  9. @Html.LabelFor(m => m.OperationID, new { @class = "control-label col-sm-3" })
  10. <div class="col-sm-9">
  11. @Html.DropDownList("OperationID", null, "", htmlAttributes: new { @class = "form-control input-circle" })
  12. @Html.ValidationMessageFor(model => model.OperationID, "", new { @class = "text-danger" })
  13. </div>
  14. </div>
  15. <div class="form-group">
  16. @Html.LabelFor(m => m.PriceLevelID, new { @class = "control-label col-sm-3" })
  17. <div class="col-sm-9">
  18. @Html.DropDownList("PriceLevelID", null, "", htmlAttributes: new { @class = "form-control input-circle" })
  19. @Html.ValidationMessageFor(model => model.PriceLevelID, "", new { @class = "text-danger" })
  20. </div>
  21. </div>
  22. <div class="form-group">
  23. @Html.LabelFor(m => m.Value, new { @class = "control-label col-sm-3" })
  24. <div class="col-sm-9">
  25. @Html.EditorFor(model => model.Value, new { htmlAttributes = new { @class = "form-control input-circle" } })
  26. @Html.ValidationMessageFor(model => model.Value, "", new { @class = "text-danger" })
  27. </div>
  28. </div>
  29. <div class="form-group">
  30. @Html.LabelFor(m => m.IsSpecialConditions, new { @class = "control-label col-sm-3" })
  31. <div class="col-sm-9">
  32. <div class="bootstrap-switch-container">
  33. @Html.EditorFor(model => model.IsSpecialConditions, new { htmlAttributes = new { @class = "make-switch" } })
  34. @Html.ValidationMessageFor(model => model.IsSpecialConditions, "", new { @class = "text-danger" })
  35. </div>
  36. </div>
  37. </div>
  38. </div>
  39. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement