@model GODATA.Models.Ticket.CustomerModel
@using (Ajax.BeginForm("CreateNewCustomerForExistingVehicle", "Ticket_CustomerInventory", new AjaxOptions { HttpMethod = "POST", OnBegin = "onBegin", OnSuccess = "onSuccessAddCustomerForExistingVehicle" })) { @Html.ValidationSummary(true) @Html.HiddenFor(model => model.CustomerStateName, new { id = "customerStateName" }) @Html.HiddenFor(model => model.CustomerOwnerStateName, new { id = "customerOwnerStateName" }) @Html.HiddenFor(model => model.selection, new { id = "selection" }) @Html.Hidden("hdnVehicleChassis")

Vehicle Details

@Html.LabelFor(model => model.VehicleRegistrationNumber) @Html.ValidationMessageFor(model => model.VehicleRegistrationNumber) @Html.LabelFor(model => model.VehicleNumberPlate) @**@ @Html.EditorFor(model => model.VehicleNumberPlate) @Html.ValidationMessageFor(model => model.VehicleNumberPlate)
@Html.LabelFor(model => model.VehicleModelNumber) @Html.ValidationMessageFor(model => model.VehicleModelNumber) @Html.LabelFor(model => model.CustomerVehicleModelTagging) @Html.ValidationMessageFor(model => model.CustomerVehicleModelTagging)
@Html.LabelFor(model => model.VehicleType) @Html.ValidationMessageFor(model => model.VehicleType) @Html.LabelFor(model => model.InstallationDate) @Html.ValidationMessageFor(model => model.InstallationDate)

Owner/Fleet Details

@Html.LabelFor(model => model.CustomerOwnerMobileNo1) @Html.ValidationMessageFor(model => model.CustomerOwnerMobileNo1) @Html.LabelFor(model => model.CustomerOwnerName) @Html.ValidationMessageFor(model => model.CustomerOwnerName)
@Html.LabelFor(model => model.CustomerOwnerEmailId) @Html.ValidationMessageFor(model => model.CustomerOwnerEmailId) @Html.LabelFor(model => model.CustomerOwnerAddress)
@Html.LabelFor(model => model.CustomerOwnerState) @Html.ValidationMessageFor(model => model.CustomerOwnerState) @Html.LabelFor(model => model.CustomerOwnerCity) @Html.ValidationMessageFor(model => model.CustomerOwnerCity)
@*

Customer Details

*@

Customer Details

@Html.LabelFor(model => model.CustomerMobileNumber1) * @Html.EditorFor(model => model.CustomerMobileNumber1) @Html.ValidationMessageFor(model => model.CustomerMobileNumber1) @Html.LabelFor(model => model.CustomerCustomerName) * @Html.EditorFor(model => model.CustomerCustomerName) @Html.ValidationMessageFor(model => model.CustomerCustomerName)
@Html.LabelFor(model => model.CustomerEmailId) @Html.EditorFor(model => model.CustomerEmailId) @Html.ValidationMessageFor(model => model.CustomerEmailId) @Html.LabelFor(model => model.CustomerAddress) @Html.EditorFor(model => model.CustomerAddress)
@Html.LabelFor(model => model.CustomerState) @Html.DropDownListFor(model => model.CustomerState, (IEnumerable)ViewBag.StateList, "-Select-", new { @id = "ddCustomerState", @onchange = "LoadCityList(id)" }) @Html.LabelFor(model => model.CustomerCity)

}