@model GODATA.Models.Inventory.ManageOwner @using (Ajax.BeginForm("", "", new AjaxOptions { HttpMethod = "POST" }, new { @id = "Form2" })) { @Html.HiddenFor(model => model.CustomerId, new { @id = "hdnCustomerId" }) @Html.ValidationSummary(true) @Html.HiddenFor(model => model.OwnerCityId)
| @Html.DisplayNameFor(model => model.CustomerCustomerName) | @Html.TextBoxFor(model => model.CustomerCustomerName, new { @onkeypress = "return AllowSpecialCharacterForOwner(event,this)" }) | @Html.DisplayNameFor(model => model.CustomerMobileNumber1) | @Html.TextBoxFor(model => model.CustomerMobileNumber1, new { @onblur = "CheckDUP(3)", @onkeypress = "return isNumber(event,this);", @maxlength = "10" }) |
| @Html.DisplayNameFor(model => model.CustomerAddress) | @Html.TextBoxFor(model => model.CustomerAddress, new { @id = "OwnerAddress" }) | @Html.DisplayNameFor(model => model.CustomerEmailId) | @Html.TextBoxFor(model => model.CustomerEmailId) |
| @Html.DisplayNameFor(model => model.CustomerState) |
@Html.DropDownListFor(model => model.OwnerStateId, (IEnumerable |
@Html.DisplayNameFor(model => model.CustomerCity) | |
| @Html.DisplayNameFor(model => model.IsKamUser) | @Html.CheckBoxFor(model => model.IsKamUser, new { @style = "height: 18px;" }) | @Html.DisplayNameFor(model => model.LicenseKey) | @Html.DisplayFor(model => model.LicenseKey) |