@model GODATA.Models.Inventory.ManageOwner @Html.ValidationSummary(true)
@Html.HiddenFor(model => model.VehicleId) @Html.HiddenFor(model => model.CustomerCity, new { @id = "hdnCustCityIdNo" }) @Html.HiddenFor(model => model.CustomerId, new { @id = "hdnCustId" })
@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)ViewBag.VehicleModelNo, "-Select-", new { @id = "ddlVechileNo", @onchange = "GetProductVar()" }) @Html.TextBoxFor(model => model.VehicleModelNumber, new { @readonly = true, @class="disable_btn" }) @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)ViewBag.VehicleType, "-Select-", new { @id = "ddlVechileType" }) @Html.TextBoxFor(model => model.VehicleType, new { @id = "VechVechType", @readonly = true , @class="disable_btn"}) @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)ViewBag.StateList, "-Select-", new { @id = "ddlState", @onchange = "LoadCityList('#ddlState','#ddlCity')" }) @Html.DisplayNameFor(model => model.CustomerCity) @* @Html.TextBoxFor(model => model.CustomerCity, new { @id = "VechCity" })*@