forked from basoro/Dokter-Ulun
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpasien.php
executable file
·100 lines (94 loc) · 3.51 KB
/
pasien.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<?php
/***
* SIMRS Khanza Lite from version 0.1 Beta
* About : Porting of SIMRS Khanza by Windiarto a.k.a Mas Elkhanza as web and mobile app.
* Last modified: 02 Pebruari 2018
* Author : drg. Faisol Basoro
* Email : drg.faisol@basoro.org
* Licence under GPL
***/
$title = 'Data Pasien';
include_once('config.php');
include_once('layout/header.php');
include_once('layout/sidebar.php');
?>
<section class="content">
<div class="container-fluid">
<div class="row clearfix">
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12">
<div class="card">
<div class="header">
<h2>
DATA PASIEN
</h2>
</div>
<div class="body responsive">
<table id="pasien" class="table table-bordered table-striped table-hover display nowrap js-exportable" width="100%">
<thead>
<tr>
<th>No. RM</th>
<th>Nama Pasien</th>
<th>No KTP/SIM</th>
<th>J.K</th>
<th>Tmp. Lahir</th>
<th>Tgl. Lahir</th>
<th>Alamat</th>
<th>No. Tlp</th>
<th>Pekerjaan</th>
<th>Stts. Nikah</th>
<th>Tgl. Daftar</th>
<th>Umur</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<?php
include_once('layout/footer.php');
?>
<script>
$('#pasien').dataTable( {
"bInfo" : false,
"scrollX": true,
"processing": true,
"serverSide": true,
"responsive": true,
//"responsive": {
// "details": {
// "display": $.fn.dataTable.Responsive.display.modal( {
// "header": function ( row ) {
// var data = row.data();
// return '<h3>Detail Pasien</h3>';
// }
// } ),
// "renderer": $.fn.dataTable.Responsive.renderer.tableAll()
// }
//},
"oLanguage": {
"sProcessing": "Sedang memproses...",
"sLengthMenu": "Tampilkan _MENU_ entri",
"sZeroRecords": "Tidak ditemukan data yang sesuai",
"sInfo": "Menampilkan _START_ sampai _END_ dari _TOTAL_ entri",
"sInfoEmpty": "Menampilkan 0 sampai 0 dari 0 entri",
"sInfoFiltered": "(disaring dari _MAX_ entri keseluruhan)",
"sInfoPostFix": "",
"sSearch": "Cari:",
"sUrl": "",
"oPaginate": {
"sFirst": "«",
"sPrevious": "‹",
"sNext": "›",
"sLast": "»"
}
},
"order": [[ 0, "asc" ]],
"ajax": "includes/pasien.php"
} );
</script>