22 lines
437 B
PHP
22 lines
437 B
PHP
|
<script>
|
||
|
// INIT FORM
|
||
|
function getTable() {
|
||
|
let startDate = $('#berkala_startDate').val();
|
||
|
let endDate = $('#berkala_endDate').val();
|
||
|
let merchant_filter = $('#merchant_filter').val();
|
||
|
|
||
|
table.ajax.url(routeTable+'&startDate='+startDate+'&endDate='+endDate+'&merchant_filter='+merchant_filter).load();
|
||
|
}
|
||
|
|
||
|
$(document).ready(function () {
|
||
|
|
||
|
$('.znSelect2').select2({
|
||
|
placeholder: "Pilih"
|
||
|
});
|
||
|
|
||
|
})
|
||
|
|
||
|
|
||
|
|
||
|
</script>
|