@model GODATA.Models.Ticket.FeedBackModel
| @Html.LabelFor(model => model.SuggestionComplaint) | @Html.DisplayFor(model => model.SuggestionComplaint) | |||
| @Html.LabelFor(model => model.Complaint) | @Html.DisplayFor(model => model.Complaint) | |||
| @Html.LabelFor(model => model.CallStatus) | @Html.DisplayFor(model => model.CallStatus) | |||
| @Html.LabelFor(model => model.SuggestionComplaint) | @(Html.Kendo().MultiSelectFor(model => model.SuggestionComplaintList) .Name("SuggestionComplaintList").Placeholder("-Select-") .BindTo(new SelectList(ViewBag.Suggestions, "Value", "Text")) .Events(e => { e.Select("onSelectSuggestion").Close("onCloseSuggestion").Change("onChangeSuggestion"); }) ) @Html.ValidationMessageFor(model => model.SuggestionComplaint) | Other | ||
| @Html.LabelFor(model => model.ComplaintList) | @(Html.Kendo().MultiSelectFor(model => model.ComplaintList) .Name("ComplaintList").Placeholder("-Select-") .BindTo(new SelectList(ViewBag.Complaint, "Value", "Text")) .Events(e => { e.Select("onSelectComplaint").Close("onCloseComplaint").Change("onChangeComplaint"); }) ) @Html.ValidationMessageFor(model => model.ComplaintList) | Other | ||
| @Html.LabelFor(model => model.CallStatus) |
@Html.DropDownListFor(model => model.CallStatus, (IEnumerable |
Other | ||
| @Html.LabelFor(model => model.ReasonMoreThan24Hrs) | @Html.DisplayFor(model => model.ReasonMoreThan24Hrs) |
|
@Html.LabelFor(model => model.ReasonMoreThan24Hrs)
|
@Html.DropDownListFor(model => model.ReasonMoreThan24Hrs, (IEnumerable |
Other |