@model GODATA.Models.UserInventory.UserInventory @using (Ajax.BeginForm("ManageUserInventory_AddVecvUser", "UserInventory", new AjaxOptions { HttpMethod = "POST", OnBegin = "onBeginAddUser", OnSuccess = "onSuccess" })) { @Html.ValidationSummary(true) @Html.HiddenFor(model => model.StateName, new { id = "stateName" })
@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.LabelFor(model => model.FirstName) * @Html.EditorFor(model => model.FirstName) @Html.ValidationMessageFor(model => model.FirstName) @Html.LabelFor(model => model.UserName) * @Html.EditorFor(model => model.UserName) @Html.ValidationMessageFor(model => model.UserName)
@Html.LabelFor(model => model.Password) * @Html.EditorFor(model => model.Password) @Html.ValidationMessageFor(model => model.Password) @Html.LabelFor(model => model.ConfirmPassword) @Html.EditorFor(model => model.ConfirmPassword) @Html.ValidationMessageFor(model => model.ConfirmPassword)
@Html.LabelFor(model => model.Designation) * @Html.DropDownListFor(model => model.Designation, (IEnumerable)ViewBag.RoleList, "-Select-", new { @id = "ddDesignation" }) @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

}