@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.isonlinename @item.username @item.udtymd
일정등록
교육일정등록
@if(Model.CMInningscds.Count() > 0) { foreach (var item in Model.CMInningscds) { } }
순서 교육일정 제한인원 등록인원 최근수정일
@item.scdseq @item.quota @item.regmem @item.udt
@Html.Partial("./Partial/DForm", Model, new ViewDataDictionary { { "preform", 1 } })

회차등록/수정닫기

강의주제 @Html.TextBox("ititle", "", new { @class = "form-control", @style = "", @maxlength = "100" })
교안
강사 @Html.Partial("./Partial/Select", Model.CMPRs, new ViewDataDictionary { { "special", "reg" }, { "name", "userno" }, { "selected", "" }, { "df", ":-강사선택" }, { "class", "disp-init" } })
회차(순서) @Html.TextBox("iseq", "", 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" }, { "style", "width: 80px;" } }) @Html.Partial("./Partial/Select", "", new ViewDataDictionary { { "special", "fromto" }, { "name", "istm" }, { "start", 0 }, { "end", 59 }, { "textadd", "분" }, { "df", ":-분" }, { "class", "disp-init" }, { "style", "width: 80px;" } }) ~ @Html.Partial("./Partial/Select", "", new ViewDataDictionary { { "special", "fromto" }, { "name", "ieth" }, { "start", 0 }, { "end", 23 }, { "textadd", "시" }, { "df", ":-시" }, { "class", "disp-init" }, { "style", "width: 80px;" } }) @Html.Partial("./Partial/Select", "", new ViewDataDictionary { { "special", "fromto" }, { "name", "ietm" }, { "start", 0 }, { "end", 59 }, { "textadd", "분" }, { "df", ":-분" }, { "class", "disp-init" }, { "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 = "3" })
저장 삭제


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