แก้ไข op 3550, 3567, 3568

This commit is contained in:
Nakorn Rientrakrunchai
2020-10-17 14:01:41 +07:00
parent 43cb1d0b1c
commit 916d24b976
26 changed files with 537 additions and 496 deletions

View File

@@ -44,7 +44,7 @@
<input class="form-control" type="text" id="s_search_employee_for_group_fullname" iLabel="ชื่อ-สกุล" iRequire="true" iGroup="s_search_employee_for_group" title='ชื่อ-สกุล' placeholder='ชื่อ-สกุล' />
</div>
</div>
<div class="row">
<div class="col-md-6">
@@ -52,39 +52,40 @@
<button class="btn btn-info" onclick="javascript:search_employee_DeselectAll();">ไม่เลือก ทั้งหมด</button>
</div>
<div class="col-md-6">
<button class="btn btn-info" onclick="javascript:search_employee_for_group_DoSearch();">ค้นหา</button>
<button class="btn btn-info" onclick="javascript:search_employee_for_group_DoSearch();"><i class="fa fa-search" style="font-size: 14px;"></i> ค้นหา</button>
<button class="btn btn-info" onclick="javascript:search_employee_for_group_GetSelect('id');">ดึงตัวเลือก</button>
</div>
</div>
</div>
<div style="overflow-x: auto;">
<table id="search_employee_for_groupTable" class="display table table-bordered table-striped">
<thead>
<tr>
<th>เลือก</th>
<th><label id='h_search_employee_for_group_employee_number'>รหัสพนักงาน</label></th>
<th><label id='h_search_employee_for_group_org_id'>หน่วยงาน</label></th>
<th><label id='h_search_employee_for_group_fullname'>ชื่อ-สกุล</label></th>
<th><label id='h_search_employee_for_group_position_id'>ตำแหน่ง</label></th>
<th><label id='h_search_employee_for_group_level_name'>ระดับ</label></th>
<table id="search_employee_for_groupTable" class="display table table-bordered table-striped">
<thead>
<tr>
<th>เลือก</th>
<th><label id='h_search_employee_for_group_employee_number'>รหัสพนักงาน</label></th>
<th><label id='h_search_employee_for_group_org_id'>หน่วยงาน</label></th>
<th><label id='h_search_employee_for_group_fullname'>ชื่อ-สกุล</label></th>
<th><label id='h_search_employee_for_group_position_id'>ตำแหน่ง</label></th>
<th><label id='h_search_employee_for_group_level_name'>ระดับ</label></th>
<th><label id='h_search_employee_for_group_remark'>หมายเหตุ</label></th>
</tr>
</thead>
<tbody></tbody>
</table>
<th><label id='h_search_employee_for_group_remark'>หมายเหตุ</label></th>
</tr>
</thead>
<tbody></tbody>
</table>
</div>
</section>
@section FooterPlaceHolder{
<script src="~/js/search_employee_for_group/search_employee_for_group.js?version=@MyHelper.GetDummyText()"></script>
<script>
$(document).ready(function () {
search_employee_for_group_InitiateDataTable();
search_employee_for_group_InitialForm();
SetupValidationRemark("search_employee_for_group");
$("#s_search_employee_for_group_org_id").select2();
$("#s_search_employee_for_group_position_id").select2();
});
$(document).ready(function () {
search_employee_for_group_InitiateDataTable();
search_employee_for_group_InitialForm();
SetupValidationRemark("search_employee_for_group");
$("#s_search_employee_for_group_org_id").select2();
$("#s_search_employee_for_group_position_id").select2();
});
</script>
}