@model GODATA.Models.UserInventory.UserInventory @using (Ajax.BeginForm("ManageUserInventory_EditVecvUser", "UserInventory", new AjaxOptions { HttpMethod = "POST", OnSuccess = "onSuccessEdit" })) { @Html.ValidationSummary(true) @Html.HiddenFor(model => model.StateName, new { id = "stateName" }) @Html.HiddenFor(model => model.IsDeleted, new { Value = false })
@Html.LabelFor(model => model.OrganizationId) * @Html.DropDownListFor(model => model.OrganizationId, (IEnumerable)ViewBag.OrganizationList, "-Select-", new { @id = "ddOrganization", @onchange = "LoadStateListRegionWise(id, 'ddState','ddCity')" }) @*@Html.DropDownListFor(model => model.OrganizationId, (IEnumerable)ViewBag.OrganizationList, "-Select-", new { @id = "ddOrganization" })*@ @Html.ValidationMessageFor(model => model.OrganizationId) @Html.LabelFor(model => model.VehicleTaggingList) @Html.DropDownListFor(model => model.VehicleTaggingList, (IEnumerable)ViewBag.VehicleModelNo, "-Select-") @Html.ValidationMessageFor(model => model.VehicleTaggingList)
@Html.LabelFor(model => model.State) @Html.DropDownListFor(model => model.State, (IEnumerable)ViewBag.StateList, "-Select-", new { @id = "ddState", @onchange = "LoadCityList()" }) @Html.LabelFor(model => model.City) @Html.DropDownListFor(model => model.City, (IEnumerable)ViewBag.CityList, "-Select-", new { @id = "ddCity" }) @**@
@Html.LabelFor(model => model.FirstName) * @Html.TextBoxFor(model => model.FirstName) @Html.ValidationMessageFor(model => model.FirstName) @Html.LabelFor(model => model.UserName) * @Html.TextBoxFor(model => model.UserName, new { @readonly = "readonly", @class = "disable_btn" }) @Html.ValidationMessageFor(model => model.UserName)
@Html.LabelFor(model => model.Designation) * @Html.TextBoxFor(model => model.Designation, new { @id = "ddDesignation", @readonly = "readonly", @class = "disable_btn" }) @Html.ValidationMessageFor(model => model.Designation) @Html.LabelFor(model => model.Language) @Html.DropDownListFor(model => model.Language, (IEnumerable)ViewBag.LanguageList, "-Select-", new { @id = "ddLanguage" }) @Html.ValidationMessageFor(model => model.Language)
Is EPS User

}