75 lines
3.7 KiB
PHP
75 lines
3.7 KiB
PHP
<?php
|
|
include('../../koneksi.php');
|
|
?>
|
|
|
|
<script type="text/javascript">$("#tabel_data_jabatan").DataTable({"stateSave": true,"paging": true,"lengthChange": true,"searching": true,"ordering": false,"info": true,"autoWidth": false});</script>
|
|
<table id="tabel_data_jabatan" class="table table-striped table-bordered table-condensed tb_master" cellpadding="1" >
|
|
<thead style="font-weight:bold">
|
|
<tr>
|
|
<td align="center" width="40">ID</td>
|
|
<td align="center">Jabatan</td>
|
|
<td align="center" width="40px;">Tools</td>
|
|
</tr>
|
|
</thead>
|
|
<tbody style="color:black">
|
|
<?php
|
|
$data = pg_query("SELECT * FROM jabatan_pegawai ORDER BY id DESC");
|
|
while($row=pg_fetch_array($data)) {
|
|
?>
|
|
<tr>
|
|
<td class="kiri" align="center"><?php echo $row['id']; ?></td>
|
|
<td><?php echo $row['nama']; ?></td>
|
|
<td class="kanan" align="center">
|
|
<button type="button" name="edit_jabatan" style="height:22px;" class="btn btn-teal btn-xs edit_jabatan" id="<?php echo $row['id'];?>" data-content="Edit Data" rel="popover" data-placement="bottom" data-trigger="hover">
|
|
<i class="fa fa fa-pencil"></i>
|
|
</button>
|
|
<!-- <button type="button" name="delete_jabatan" style="height:22px;"class="btn btn-danger btn-xs delete_jabatan" id="<?php echo $row['id'];?>" data-content="Hapus" rel="popover" data-placement="bottom" data-trigger="hover">
|
|
<i class="fa fa-remove"></i>
|
|
</button> -->
|
|
</td>
|
|
</tr>
|
|
<?php
|
|
}
|
|
?>
|
|
</tbody>
|
|
</table>
|
|
|
|
|
|
|
|
<script type="text/javascript">
|
|
$("#tabel_data_jabatan").on('click','.edit_jabatan',function(){
|
|
var id = $(this).attr('id');
|
|
$('#modal_jabatan').modal('show');
|
|
$('#modal_body_jabatan').html("");
|
|
$.ajax({
|
|
type: "POST",
|
|
url: "app/master/jabatan/modal.php",
|
|
data: 'id='+id,
|
|
success: function(data){
|
|
$('#modal_body_jabatan').html(data);
|
|
$('#nama').first().focus().selected();
|
|
}
|
|
});
|
|
});
|
|
|
|
|
|
$("#tabel_data_jabatan").on('click','.delete_jabatan',function(){
|
|
var x = confirm("Anda yakin ingin menghapus ?");
|
|
if (x) {
|
|
var key = "delete_jabatan";
|
|
var id = $(this).attr('id');
|
|
var rowElement = $(this).parent().parent();
|
|
$.ajax({
|
|
type: "POST",
|
|
url: "app/master/jabatan/crud.php",
|
|
data: 'id='+id
|
|
+'&key='+key,
|
|
success: function(data){
|
|
rowElement.fadeOut(500).remove();
|
|
}
|
|
});
|
|
} else {}
|
|
});
|
|
</script>
|
|
|