@model GODATA.Models.Inventory.ManageOwner @Html.ValidationSummary(true)
| @Html.DisplayNameFor(model => model.VehicleRegistrationNumber) | @Html.Partial("RegistrationNo", new ViewDataDictionary { { "RegNo", Model.VehicleRegistrationNumber }, { "id", "VehicleRegistrationNumber" }, { "BlurFunction", "CheckDUP(1)" }, { "name", "VehicleRegistrationNumber" } }) @* @Html.TextBoxFor(model => model.VehicleRegistrationNumber, new { @class = "required" })*@ | @Html.DisplayNameFor(model => model.VehicleNumberPlate) | @Html.TextBoxFor(model => model.VehicleNumberPlate, new { @onblur = "CheckDUP(2)" }) |
| @Html.DisplayNameFor(model => model.CustomerVehicleModelName) |
@Html.DropDownListFor(model => model.VehicleModelNumber, (IEnumerable |
@Html.DisplayNameFor(model => model.CustomerVehicleModelTagging) | @Html.TextBoxFor(model => model.CustomerVehicleModelTagging, new { @id = "VechProduct", @readonly = true , @class="disable_btn"}) |
| @Html.DisplayNameFor(model => model.VehicleType) |
@Html.DropDownListFor(model => model.VehicleType, (IEnumerable |
@Html.DisplayNameFor(model => model.VehicleInstallationDate) | @(Html.Kendo().DatePicker() .Name("VehicleInstallationDate") .Start(CalendarView.Month) .Depth(CalendarView.Month) .Format(System.Configuration.ConfigurationManager.AppSettings["dateFormat"]) .HtmlAttributes(new { @class = "kendo-make-readonly", @width = "200px" })) |
| @Html.DisplayNameFor(model => model.CustomerCustomerName) | @Html.TextBoxFor(model => model.CustomerCustomerName, new { @id = "VechCustName" }) | @Html.DisplayNameFor(model => model.CustomerMobileNumber1) | @Html.TextBoxFor(model => model.CustomerMobileNumber1, new { @id = "VechileMobileNo", @onkeypress = "return isNumber(event,this);", @maxlength = "10" }) |
| @Html.DisplayNameFor(model => model.CustomerEmailId) | @Html.TextBoxFor(model => model.CustomerEmailId, new { @id = "txtCustomerEmailId" }) | @Html.DisplayNameFor(model => model.CustomerAddress) | @Html.TextBoxFor(model => model.CustomerAddress, new { @id = "VechileAddress" }) |
| @Html.DisplayNameFor(model => model.CustomerState) |
@Html.DropDownListFor(model => model.CustomerStateIdNo, (IEnumerable |
@Html.DisplayNameFor(model => model.CustomerCity) | @* @Html.TextBoxFor(model => model.CustomerCity, new { @id = "VechCity" })*@ |