@model GODATA.Models.Ticket.EscalationMatrix @*
*@ @using (Ajax.BeginForm("CreateEscalation", "Ticket", new AjaxOptions { HttpMethod = "POST", OnBegin = "onBeginCreateEscalation", OnSuccess = "onSuccessEscalation" })) { @Html.ValidationSummary(true) @Html.HiddenFor(model => model.StateName, new { id = "stateName" }) @Html.HiddenFor(model => model.region_name, new { id = "regionName" })
@Html.LabelFor(model => model.organization_id) @*@Html.TextBoxFor(model => model.OrganizationId, new { @class = "k-textbox" })*@ @Html.DropDownListFor(model => model.organization_id, (IEnumerable)ViewBag.OrganizationList, "-Select-", new { @id = "ddOrganization", @onchange = "onChangeOrganization(id)" }) @Html.ValidationMessageFor(model => model.organization_id) @Html.LabelFor(model => model.dealer_name) @Html.TextBoxFor(model => model.dealer_name, new { @id = "ddDealerName", @class = "widthComboBox" }) @*@Html.DropDownListFor(model => model.DealerName, (IEnumerable)ViewBag.Service, "-Select-", new { @id = "ddDealerName" })*@ @Html.ValidationMessageFor(model => model.dealer_name)
@Html.LabelFor(model => model.manager_name) @Html.TextBoxFor(model => model.manager_name, new { @class = "" }) @*@Html.DropDownListFor(model => model.ManagerName, (IEnumerable)ViewBag.Service, "-Select-", new { @id = "ddServicelist", @onchange = "onChangeServices()" })*@ @Html.ValidationMessageFor(model => model.manager_name) @Html.LabelFor(model => model.manager_level) @*@Html.TextBoxFor(model => model.ManagerLevel, new { @class = "k-textbox" })*@ @Html.DropDownListFor(model => model.manager_level, (IEnumerable)ViewBag.Service, "-Select-", new { @id = "ddManagerLevel" }) @Html.ValidationMessageFor(model => model.manager_level)
@Html.LabelFor(model => model.state) @Html.DropDownListFor(model => model.state, (IEnumerable)ViewBag.StateList, "-Select-", new { @id = "ddStateList", @onchange = "onChangeState(id)" }) @Html.ValidationMessageFor(model => model.state) @Html.LabelFor(model => model.city) @Html.DropDownListFor(model => model.city, (IEnumerable)ViewBag.Service, "-Select-", new { @id = "ddCityList" }) @Html.ValidationMessageFor(model => model.city) @*@Html.TextBoxFor(model => model.City, new { @class = "disable_btn k-textbox"})*@
@Html.LabelFor(model => model.van_type) @*@Html.TextBoxFor(model => model.VanType, new { @class = "k-textbox" })*@ @Html.DropDownListFor(model => model.VehicleTaggingList, (IEnumerable)ViewBag.Service, "-Select-", new { @id = "ddVehicleType" }) @Html.ValidationMessageFor(model => model.VehicleTaggingList) @Html.LabelFor(model => model.notification_type) Email SMS
@Html.LabelFor(model => model.alarm_age) @Html.TextBoxFor(model => model.alarm_age, new { @class = "" }) @Html.ValidationMessageFor(model => model.alarm_age) @Html.LabelFor(model => model.alarm_age_sla_not_met) @Html.TextBoxFor(model => model.alarm_age_sla_not_met, new { @class = "" }) @Html.ValidationMessageFor(model => model.alarm_age_sla_not_met)
@Html.LabelFor(model => model.alarm_age_ticket_not_closed) @Html.TextBoxFor(model => model.alarm_age_ticket_not_closed, new { @class = "" }) @Html.ValidationMessageFor(model => model.alarm_age_ticket_not_closed) @Html.LabelFor(model => model.alarm_age_van_not_live) @Html.TextBoxFor(model => model.alarm_age_van_not_live, new { @class = "" }) @Html.ValidationMessageFor(model => model.alarm_age_van_not_live)
@Html.LabelFor(model => model.alarm_age_eicher_promise_48hrs) @Html.TextBoxFor(model => model.alarm_age_eicher_promise_48hrs, new { @class = "" }) @Html.ValidationMessageFor(model => model.alarm_age_eicher_promise_48hrs)
@Html.LabelFor(model => model.emails) @*
help
*@
@Html.TextBoxFor(model => model.emails) @Html.ValidationMessageFor(model => model.emails)
@Html.LabelFor(model => model.phones)
help Only 10 digits
Ex. 9999999999
@*
[Only 10 digits
Ex. xxxxxxxxxx]
*@
@Html.TextBoxFor(model => model.phones) @Html.ValidationMessageFor(model => model.phones)

} @*
*@ @**@ @Scripts.Render("~/bundles/jsTagsInput")