102 lines
5.3 KiB
Plaintext
102 lines
5.3 KiB
Plaintext
@using Microsoft.Extensions.Configuration
|
|
@inject IConfiguration Configuration
|
|
@{
|
|
ViewData["Title"] = "eva_evaluation_group";
|
|
}
|
|
|
|
<div class="modal fade" id="eva_evaluation_groupModel" style="z-index:1500" role="dialog" aria-labelledby="eva_evaluation_groupModelLabel" aria-hidden="true">
|
|
<div class="modal-dialog modal-lg" role="document">
|
|
<div class="modal-content">
|
|
<div class="modal-header">
|
|
<h5 class="modal-title" id="eva_evaluation_groupModelLabel">บันทึกข้อมูล กลุ่มการประเมิน</h5>
|
|
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
|
|
<span aria-hidden="true">×</span>
|
|
</button>
|
|
</div>
|
|
<div class="modal-body">
|
|
<div class="row">
|
|
<div class="col-md-12">
|
|
<input class="form-control" type="hidden" id="eva_evaluation_group_id" />
|
|
<div class='row'></div>
|
|
<div class='row'>
|
|
<div class="form-group col-md-6">
|
|
<label id="lab_eva_evaluation_group_code" for="eva_evaluation_group_code">รหัสกลุ่มการประเมิน</label>
|
|
<input class="form-control" type="text" id="eva_evaluation_group_code" iLabel="รหัสกลุ่มการประเมิน" iRequire="true" iGroup="eva_evaluation_group" />
|
|
</div>
|
|
|
|
<div class="form-group col-md-6">
|
|
<label id="lab_eva_evaluation_group_thegroup" for="eva_evaluation_group_thegroup">กลุ่มการประเมิน</label>
|
|
<input class="form-control" type="text" id="eva_evaluation_group_thegroup" iLabel="กลุ่มการประเมิน" iRequire="true" iGroup="eva_evaluation_group" />
|
|
</div>
|
|
</div>
|
|
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="modal-footer">
|
|
<button type="button" class="btn btn-danger" data-dismiss="modal"><i class="fa fa-ban"></i> ยกเลิก</button>
|
|
<button type="button" class="btn btn-primary" onclick="javascript:eva_evaluation_group_PutUpdate()">บันทึก</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="row page-title">
|
|
<div class="col-md-5">
|
|
<div class="page-title">
|
|
@Environment.GetEnvironmentVariable("SiteInformation_modulename")
|
|
</div>
|
|
</div>
|
|
<div class="col-md-7">
|
|
<ol class="breadcrumb" style="">
|
|
<li class="breadcrumb-item "><a href="@MyHelper.GetConfig(Configuration, "SiteInformation:mainsite")">หน้าแรก</a></li>
|
|
<li class="breadcrumb-item "><a href="@MyHelper.GetConfig(Configuration, "SiteInformation:mainsite")@MyHelper.GetConfig(Configuration, "SiteInformation:appsite")">@Environment.GetEnvironmentVariable("SiteInformation_modulename")</a></li>
|
|
<li class="breadcrumb-item active">กำหนด กลุ่มการประเมิน</li>
|
|
</ol>
|
|
</div>
|
|
</div>
|
|
|
|
<section class="wrapper">
|
|
<div class="title"><div class="line"></div>กำหนด กลุ่มการประเมิน</div>
|
|
<div class="tools">
|
|
<div class="row">
|
|
|
|
<div class="form-group col-md-3">
|
|
<label id='lab_s_eva_evaluation_group_code' for='s_eva_evaluation_group_code'>รหัสกลุ่มการประเมิน</label>
|
|
<input class="form-control" type="text" id="s_eva_evaluation_group_code" iLabel="รหัสกลุ่มการประเมิน" iRequire="true" iGroup="s_eva_evaluation_group" title='รหัสกลุ่มการประเมิน' placeholder='รหัสกลุ่มการประเมิน' />
|
|
</div>
|
|
|
|
<div class="col-md-3">
|
|
<button class="btn btn-info" onclick="javascript:eva_evaluation_group_DoSearch();">ค้นหา</button>
|
|
<button class="btn btn-info" onclick="javascript:eva_evaluation_group_GoCreate();"><i class="fa fa-plus" style="font-size: 14px;"></i> เพิ่มรายการ</button>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
|
|
<table id="eva_evaluation_groupTable" class="display table table-bordered table-striped">
|
|
<thead>
|
|
<tr>
|
|
<th>เครื่องมือ</th>
|
|
<th><label id='h_eva_evaluation_group_code'>รหัสกลุ่มการประเมิน</label></th>
|
|
<th><label id='h_eva_evaluation_group_thegroup'>กลุ่มการประเมิน</label></th>
|
|
|
|
</tr>
|
|
</thead>
|
|
<tbody></tbody>
|
|
</table>
|
|
</section>
|
|
|
|
@section FooterPlaceHolder{
|
|
<script src="~/js/eva_evaluation_group/eva_evaluation_group.js?version=@MyHelper.GetDummyText()"></script>
|
|
<script>
|
|
$(document).ready(function () {
|
|
eva_evaluation_group_InitiateDataTable();
|
|
eva_evaluation_group_InitialForm();
|
|
SetupValidationRemark("eva_evaluation_group");
|
|
});
|
|
</script>
|
|
}
|
|
|