InterviewPlan Request
@using (Html.BeginForm("Create", "InterviewPlan", FormMethod.Post))
{
@Html.AntiForgeryToken()
}
Applicant Number
@Html.DropDownList("ApplicantID", Model.ApplicantListDDL, new { @class = "form-control select2", @onchange = "GetCandidateData();" })
@Html.ValidationMessageFor(model => model.ApplicantID, "", new { @class = "text-danger" })
@*@Html.HiddenFor(model => model.CandRegisterNo)*@
Applied Position @Html.EditorFor(model => model.AppliedPosition, new { htmlAttributes = new { @class = "form-control", @readonly = "readonly" } })
Interview Type
@Html.DropDownList("InterviewType", Model.InterviewTypeGroupDDL, new { @class = "form-control", @required = "required" })
@Html.ValidationMessageFor(model => model.InterviewType, "", new { @class = "text-danger" })
Interview Taking By @Html.EditorFor(model => model.InterviewTakenBy, new { htmlAttributes = new { @class = "form-control", @placeholder = "" } })
Interview Date @Html.EditorFor(model => model.InterviewDate, new { htmlAttributes = new { @class = "form-control", @placeholder = "" } })
Interview Time
@**@
@Html.EditorFor(model => model.InterviewTimeSpan, new { htmlAttributes = new { @class = "form-control timepicker", @placeholder = "" } })