@model NP.Model.VMCM @{ int studyplaceseq = 0; }
기본설정
@Html.Partial("./Partial/Radio", Model.ComCodes.Where(w => w.cgroup == "studyplace"), new ViewDataDictionary() { { "checked", Model.CM.studyplace }, { "name", "CM.studyplace" }, { "isreadonly", 1 } })
@Html.Partial("./Partial/Radio", null, new ViewDataDictionary() { { "valuetext", "1:온라인;0:교육장" }, { "checked", 0 }, { "name", "isonline" } })
회차등록
교육회차등록
@**@ @if(Model.CMInnings.Count() > 0) { foreach (var item in Model.CMInnings) { @**@ } }
회차 학습방식 강의주제강사최근수정일
@item.iseq @(item.istaste == 1 ? "(S)" : "") @item.scdtypename @item.username@item.udtymd
일정등록
교육일정등록
@if(Model.CMInningscds.Count() > 0) { foreach (var item in Model.CMInningscds) { } }
순서 운영기수 교육장소 교육종료일 제한인원 등록인원 최근수정일
@item.scdseq @item.sseq @item.studyplacename @item.quotastr @item.regmem @item.udt
@Html.Partial("./Partial/DForm", Model, new ViewDataDictionary { { "preform", 1 } })

회차등록/수정닫기

학습방식 @Html.Partial("./Partial/Radio", null, new ViewDataDictionary() { { "valuetext", "0:오프라인;1:온라인대체" },{ "checked",0}, { "name", "scdtype" } })
회차(순서) @Html.TextBox("iseq", "", new {@class = "form-control disp-init int nocomma text-center", @style = "width: 80px;", @maxlength = "3" })
저장 삭제


일정등록/수정닫기

운영기수 @Html.TextBox("sseq", "", new { @class = "form-control disp-init int nocomma text-center", @style = "width: 80px;", @maxlength = "3" }) 기
교육종료일 @Html.Partial("./Partial/Date", (DateTime?)null, new ViewDataDictionary { { "name", "idate" } }) @Html.Partial("./Partial/Select", "", new ViewDataDictionary { { "special", "fromto" }, { "name", "isth" }, { "start", 0 }, { "end", 23 }, { "textadd", "시" }, { "df", ":-시" }, { "class", "disp-init idoff" }, { "style", "width: 80px;" } }) @Html.Partial("./Partial/Select", "", new ViewDataDictionary { { "special", "fromto" }, { "name", "istm" }, { "start", 0 }, { "end", 59 }, { "textadd", "분" }, { "df", ":-분" }, { "class", "disp-init idoff" }, { "style", "width: 80px;" } }) ~ @Html.Partial("./Partial/Select", "", new ViewDataDictionary { { "special", "fromto" }, { "name", "ieth" }, { "start", 0 }, { "end", 23 }, { "textadd", "시" }, { "df", ":-시" }, { "class", "disp-init idoff" }, { "style", "width: 80px;" } }) @Html.Partial("./Partial/Select", "", new ViewDataDictionary { { "special", "fromto" }, { "name", "ietm" }, { "start", 0 }, { "end", 59 }, { "textadd", "분" }, { "df", ":-분" }, { "class", "disp-init idoff" }, { "style", "width: 80px;" } })
교육장소 @*@Html.Partial("./Partial/Radio", Model.ComCodes.Where(w => w.cgroup == "studyplace"), new ViewDataDictionary() { { "checked", Model.CM.studyplace }, { "name", "istudyplace" }, { "isreadonly", 0 } })*@ @foreach (var item in Model.ComCodes.Where(w => w.cgroup == "studyplace")) { studyplaceseq++; }
제한인원 @Html.TextBox("iquota", "", new { @class = "form-control disp-init int nocomma text-center", @style = "width: 80px;", @maxlength = "5" })
저장 삭제


@section styles{ } @section scriptsHeader{ @Html.Partial("./Partial/ScriptDate") } @section scripts{ }