Advertisement
Guest User

Untitled

a guest
Jul 30th, 2015
182
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.88 KB | None | 0 0
  1. @{
  2. Layout = null;
  3. }
  4. @model Chemwatch.DataExtraction.Web.Models.Account.UserCreationModelByCWuser
  5. <ul>
  6. <li>
  7. <label for="Extractor" style="width: 100px">Extractor</label>
  8. @Html.DropDownListFor(m => m.Extractor, new List<selectlistitem>(),new { @class = "form-control", @style="width:366px" ,@title="Extractor" })
  9.  
  10. </li>
  11. <li>
  12. <label for="SuperUserOrChemist" style="width: 100px">SuperUserOrChemist</label>
  13. @Html.DropDownListFor(m => m.SuperUserOrChemist, new List<selectlistitem>(), new { @class = "inp ", @style="width:366px" ,@title="SuperUserOrChemist" })
  14.  
  15. </li>
  16. <li>
  17. <label for="userName" style="width: 100px">userName</label>
  18. @Html.TextBoxFor(m => m.userName, new { @class = "inp ", @style="width:366px" ,@title="userName" })
  19.  
  20. </li>
  21. <li>
  22. <label for="Password" style="width: 100px">Password</label>
  23. @Html.TextBoxFor(m => m.Password, new { @class = "inp ", @style="width:366px" ,@title="Password" })
  24.  
  25. </li>
  26. </ul>
  27.  
  28. @model Chemwatch.DataExtraction.Web.Models.Account.UserCreationModelByCWuser
  29. @{
  30. ViewBag.Title = "ManageUser";
  31. Layout = "~/Views/Shared/_Layout.cshtml";
  32. }
  33.  
  34. <h2>ManageUser</h2>
  35. <div id="selection_container">
  36. <div class="col2" style="background: none repeat scroll 0 0 #767676;">
  37.  
  38. <!-- Navigation menu start -->
  39. <div class="v-block">
  40. <div class="credo-tabs-block" style="width: 600px; margin-top: 27px">
  41. <div class="inner">
  42. <div class="table-form main-window " style="margin: 5px">
  43. <div class="credo-form">
  44. @(Html.Kendo().TabStrip()
  45. .Name("tabstrip")
  46. .Animation(false)
  47. .Items(tabstrip =>
  48. {
  49. tabstrip.Add().Text("Baseball")
  50.  
  51. .Content(@<div>
  52. <div class="editor-label">
  53. @Html.LabelFor(model => model.Extractor)
  54. </div>
  55. @(Html.Partial("~/Views/Account/_cwusercreation.cshtml"))
  56. <input type="button" class="k-button" value="Submit" />
  57. </div>);
  58.  
  59. tabstrip.Add().Text("Golf")
  60.  
  61. .Content(@<text>
  62.  
  63. </text>);
  64.  
  65. tabstrip.Add().Text("Swimming")
  66. .Content(@<text>
  67.  
  68. </text>);
  69.  
  70. tabstrip.Add().Text("Snowboarding")
  71.  
  72. .Content(@<text>
  73.  
  74. </text>);
  75. })
  76. .SelectedIndex(0)
  77. )
  78.  
  79. @(Html.Kendo().Sortable()
  80. .For("#tabstrip ul.k-tabstrip-items")
  81. .Filter("li.k-item")
  82. .Axis(SortableAxis.X)
  83. .ContainerSelector("ul.k-tabstrip-items")
  84. .HintHandler("hint")
  85. .Events(events => events.Start("onStart").Change("onChange"))
  86. )
  87. </div>
  88. </div>
  89. </div>
  90. </div>
  91.  
  92. </div>
  93.  
  94. </div>
  95. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement