@model ViewModel.BookingModel <style> .datepicker {z-index: 1151 !important;} /*.clockpicker {z-index: 1151 !important;}*/ </style> @using (Html.BeginForm(null, null, FormMethod.Post, new { id = "frmClient" })) { @Html.AntiForgeryToken() @Html.ValidationSummary(true, "", new { @class = "text-danger" }) <div class="form-horizontal"> <div class="form-group"> @Html.LabelFor(model => model.IDRuang, htmlAttributes: new { @class = "control-label col-md-4" }) <div class="col-md-8"> @Html.DropDownListFor(model => model.IDRuang, (IEnumerable<SelectListItem>)ViewBag.RuangList, "-- Select --", new { @class = "form-control input-sm select2", @style = "width: 100%;" }) ...
Komentar
Posting Komentar