@model GODATA.Models.Ticket.FeedBackModel
@*//added for read only mode*@ @if (Model.FeedBackagent != "" && Model.FeedBackagent != null) {
Feedback @*to bind not satisfied questions dropdown *@
} else {
Feedback
@Html.Hidden("ticketId", (object)@ViewBag.TicketId) @Html.Hidden("creationTime", (string)@ViewBag.CreationTime) @if (ViewBag.FeedbackQuestions.Count > 0) { foreach (var item in (List)ViewBag.FeedbackQuestions) { } }
@Html.DisplayFor(model => item.ReasonName) Yes @Html.RadioButtonFor(model => model.FeedbackCustomerSatisfaction, "Yes", new { @checked = "checked", style = "width:50px;height:30px" }) No @Html.RadioButtonFor(model => model.FeedbackCustomerSatisfaction, "No", new { style = "width:50px;height:30px" })
@*to bind not satisfied questions dropdown *@
}
@Html.HiddenFor(model => model.SuggestionComplaint, new { @id = "hiddenSuggestion" }) @Html.HiddenFor(model => model.Complaint, new { @id = "hiddenComplaint" })