Advertisement
Guest User

_Create.cshtml

a guest
Feb 21st, 2019
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 1.38 KB | None | 0 0
  1. @using Prisme.Services.Library_List.LibraryVersions.Models.Create_Update_Read
  2. @model CreateLibraryVersionModel
  3. @{
  4.     var prisme = Html.Prisme().Helper();
  5. }
  6. <form method="post" onsubmit="LibraryListVersion.SubmitCreate()" id="CreateVersionForm">
  7.     <div class="modal-header">
  8.         <div class="modal-title">
  9.             <i class="fa fa-plus text-success"></i>
  10.             <b> Create Version</b>
  11.         </div>
  12.         <button type="button" class="btn btn-close btn-danger" onclick="LibraryListVersion.Close()">
  13.             <span>&times;</span>
  14.         </button>
  15.     </div>
  16.     <div class="modal-body">
  17.         @Html.HiddenFor(x => x.Fk_LibraryListId)
  18.         @Html.HiddenFor(x => x.Status)
  19.         @Html.HiddenFor(x => x.Version)
  20.         @prisme.FormGroupFor(x => x.Description, InputTypes.Text, @<text>
  21.             @Html.TextAreaFor(x => x.Description, new { @class = "form-control", @rows = 5 })
  22.         </text>)
  23.  
  24.     </div>
  25.     <div class="modal-footer">
  26.         <div class="btn-group">
  27.             <button type="submit" class="btn k-button k-primary">
  28.                 <i class="fa fa-save"></i>
  29.                 Submit
  30.             </button>
  31.             <button onclick="LibraryListVersion.Close()" type="button" class="btn btn-danger k-button">
  32.                 <i class="fa fa-remove "></i>
  33.                 Cancel
  34.             </button>
  35.         </div>
  36.     </div>
  37. </form>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement