Initial Commit
This commit is contained in:
@@ -0,0 +1,194 @@
|
||||
<script src="<?php echo BASE_URL;?>js/database.table.js"></script>
|
||||
<script>
|
||||
|
||||
$(document).ready(function() {
|
||||
|
||||
$(document).on("change", "#jak_depid", function() {
|
||||
$("#jak_statform").submit();
|
||||
});
|
||||
|
||||
// DataTables initialisation
|
||||
var supportTable = $('#dynamic-data').DataTable( {
|
||||
processing: true,
|
||||
serverSide: true,
|
||||
responsive: true,
|
||||
pageLength: 10,
|
||||
sDom: 'tirp',
|
||||
columnDefs: [
|
||||
{
|
||||
targets: [ 7,8,9 ],
|
||||
visible: false,
|
||||
searchable: false
|
||||
},
|
||||
{ className: "text-right", targets: [5,6] },
|
||||
{ className: "text-center", targets: [0] }
|
||||
],
|
||||
<?php if ($BT_LANGUAGE != "en") { ?>
|
||||
language: {
|
||||
"url": "<?php echo BASE_URL;?>js/dt_lang/<?php echo $BT_LANGUAGE;?>.js"
|
||||
},
|
||||
<?php } ?>
|
||||
order: [4, "ASC"],
|
||||
ajax: $.fn.dataTable.pipeline( {
|
||||
url: '<?php echo BASE_URL;?>include/dashboard_business.php',
|
||||
pages: 5 // number of pages to cache
|
||||
}),
|
||||
drawCallback: function () {
|
||||
$('.dataTables_paginate > .pagination').addClass('pagination-primary pagination-no-border justify-content-center');
|
||||
}
|
||||
});
|
||||
|
||||
$('#supportItext, #supportIsearch').on('keyup click', function() {
|
||||
supportTable.search($('#supportItext').val()).draw();
|
||||
});
|
||||
|
||||
$('#jak_shownr').on('change', function() {
|
||||
supportTable.page.len($('#jak_shownr').val()).draw();
|
||||
});
|
||||
|
||||
});
|
||||
|
||||
//
|
||||
// Pipelining function for DataTables. To be used to the `ajax` option of DataTables
|
||||
//
|
||||
$.fn.dataTable.pipeline = function ( opts ) {
|
||||
// Configuration options
|
||||
var conf = $.extend( {
|
||||
pages: 5, // number of pages to cache
|
||||
url: '', // script url
|
||||
method: 'GET' // Ajax HTTP method
|
||||
}, opts );
|
||||
|
||||
// Private variables for storing the cache
|
||||
var cacheLower = -1;
|
||||
var cacheUpper = null;
|
||||
var cacheLastRequest = null;
|
||||
var cacheLastJson = null;
|
||||
|
||||
return function ( request, drawCallback, settings ) {
|
||||
var ajax = false;
|
||||
var requestStart = request.start;
|
||||
var drawStart = request.start;
|
||||
var requestLength = request.length;
|
||||
var requestEnd = requestStart + requestLength;
|
||||
|
||||
if ( settings.clearCache ) {
|
||||
// API requested that the cache be cleared
|
||||
ajax = true;
|
||||
settings.clearCache = false;
|
||||
}
|
||||
else if ( cacheLower < 0 || requestStart < cacheLower || requestEnd > cacheUpper ) {
|
||||
// outside cached data - need to make a request
|
||||
ajax = true;
|
||||
}
|
||||
else if ( JSON.stringify( request.order ) !== JSON.stringify( cacheLastRequest.order ) ||
|
||||
JSON.stringify( request.columns ) !== JSON.stringify( cacheLastRequest.columns ) ||
|
||||
JSON.stringify( request.search ) !== JSON.stringify( cacheLastRequest.search )
|
||||
) {
|
||||
// properties changed (ordering, columns, searching)
|
||||
ajax = true;
|
||||
}
|
||||
|
||||
// Store the request for checking next time around
|
||||
cacheLastRequest = $.extend( true, {}, request );
|
||||
|
||||
if ( ajax ) {
|
||||
// Need data from the server
|
||||
if ( requestStart < cacheLower ) {
|
||||
requestStart = requestStart - (requestLength*(conf.pages-1));
|
||||
|
||||
if ( requestStart < 0 ) {
|
||||
requestStart = 0;
|
||||
}
|
||||
}
|
||||
|
||||
cacheLower = requestStart;
|
||||
cacheUpper = requestStart + (requestLength * conf.pages);
|
||||
|
||||
request.start = requestStart;
|
||||
request.length = requestLength*conf.pages;
|
||||
|
||||
// Provide the same `data` options as DataTables.
|
||||
if ( $.isFunction ( conf.data ) ) {
|
||||
// As a function it is executed with the data object as an arg
|
||||
// for manipulation. If an object is returned, it is used as the
|
||||
// data object to submit
|
||||
var d = conf.data( request );
|
||||
if ( d ) {
|
||||
$.extend( request, d );
|
||||
}
|
||||
}
|
||||
else if ( $.isPlainObject( conf.data ) ) {
|
||||
// As an object, the data given extends the default
|
||||
$.extend( request, conf.data );
|
||||
}
|
||||
|
||||
settings.jqXHR = $.ajax( {
|
||||
"type": conf.method,
|
||||
"url": conf.url,
|
||||
"data": request,
|
||||
"dataType": "json",
|
||||
"cache": false,
|
||||
"success": function ( json ) {
|
||||
cacheLastJson = $.extend(true, {}, json);
|
||||
|
||||
if ( cacheLower != drawStart ) {
|
||||
json.data.splice( 0, drawStart-cacheLower );
|
||||
}
|
||||
if ( requestLength >= -1 ) {
|
||||
json.data.splice( requestLength, json.data.length );
|
||||
}
|
||||
|
||||
drawCallback( json );
|
||||
}
|
||||
} );
|
||||
}
|
||||
else {
|
||||
json = $.extend( true, {}, cacheLastJson );
|
||||
json.draw = request.draw; // Update the echo for each response
|
||||
json.data.splice( 0, requestStart-cacheLower );
|
||||
json.data.splice( requestLength, json.data.length );
|
||||
|
||||
drawCallback(json);
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
// Register an API method that will empty the pipelined data, forcing an Ajax
|
||||
// fetch on the next draw (i.e. `table.clearPipeline().draw()`)
|
||||
$.fn.dataTable.Api.register( 'clearPipeline()', function () {
|
||||
return this.iterator( 'table', function ( settings ) {
|
||||
settings.clearCache = true;
|
||||
});
|
||||
});
|
||||
|
||||
<?php if (JAK_BILLING_MODE != 0) { ?>
|
||||
// Extend Membership
|
||||
$('.paynow').on('click', function(e) {
|
||||
|
||||
e.preventDefault();
|
||||
|
||||
$(this).find(".jak-loadbtn").addClass("fa fa-spinner fa-spin");
|
||||
|
||||
var subscribe = false;
|
||||
var _this = $(this);
|
||||
var pid = $(this).data("package");
|
||||
var paidhow = $(this).data("paidhow");
|
||||
var amount = $(this).data("amount");
|
||||
|
||||
// Populate the hidden fields
|
||||
$("#pid").val(pid);
|
||||
$("#paidhow").val(paidhow);
|
||||
$("#amount").val(amount);
|
||||
|
||||
if ($('#subscribe-'+pid).is(':checked')) {
|
||||
$("#subscribe").val(1);
|
||||
} else {
|
||||
$("#subscribe").val(0);
|
||||
}
|
||||
|
||||
$("#buypackage").submit();
|
||||
|
||||
});
|
||||
<?php } ?>
|
||||
</script>
|
||||
Reference in New Issue
Block a user