mirror of
https://gitee.com/coder-xiaomo/flashsale
synced 2025-09-12 23:11:38 +08:00
147 lines
5.8 KiB
JavaScript
147 lines
5.8 KiB
JavaScript
var TableManaged = function () {
|
|
|
|
return {
|
|
|
|
//main function to initiate the module
|
|
init: function () {
|
|
|
|
if (!jQuery().dataTable) {
|
|
return;
|
|
}
|
|
|
|
// begin first table
|
|
$('#sample_1').dataTable({
|
|
"aoColumns": [
|
|
{ "bSortable": false },
|
|
null,
|
|
{ "bSortable": false, "sType": "text" },
|
|
null,
|
|
{ "bSortable": false },
|
|
{ "bSortable": false }
|
|
],
|
|
"aLengthMenu": [
|
|
[5, 15, 20, -1],
|
|
[5, 15, 20, "All"] // change per page values here
|
|
],
|
|
// set the initial value
|
|
"iDisplayLength": 5,
|
|
"sPaginationType": "bootstrap",
|
|
"oLanguage": {
|
|
"sLengthMenu": "_MENU_ records",
|
|
"oPaginate": {
|
|
"sPrevious": "Prev",
|
|
"sNext": "Next"
|
|
}
|
|
},
|
|
"aoColumnDefs": [
|
|
{ 'bSortable': false, 'aTargets': [0] },
|
|
{ "bSearchable": false, "aTargets": [ 0 ] }
|
|
]
|
|
});
|
|
|
|
jQuery('#sample_1 .group-checkable').change(function () {
|
|
var set = jQuery(this).attr("data-set");
|
|
var checked = jQuery(this).is(":checked");
|
|
jQuery(set).each(function () {
|
|
if (checked) {
|
|
$(this).attr("checked", true);
|
|
$(this).parents('tr').addClass("active");
|
|
} else {
|
|
$(this).attr("checked", false);
|
|
$(this).parents('tr').removeClass("active");
|
|
}
|
|
});
|
|
jQuery.uniform.update(set);
|
|
});
|
|
|
|
jQuery('#sample_1').on('change', 'tbody tr .checkboxes', function(){
|
|
$(this).parents('tr').toggleClass("active");
|
|
});
|
|
|
|
jQuery('#sample_1_wrapper .dataTables_filter input').addClass("form-control input-medium input-inline"); // modify table search input
|
|
jQuery('#sample_1_wrapper .dataTables_length select').addClass("form-control input-xsmall input-inline"); // modify table per page dropdown
|
|
//jQuery('#sample_1_wrapper .dataTables_length select').select2(); // initialize select2 dropdown
|
|
|
|
// begin second table
|
|
$('#sample_2').dataTable({
|
|
"aLengthMenu": [
|
|
[5, 15, 20, -1],
|
|
[5, 15, 20, "All"] // change per page values here
|
|
],
|
|
// set the initial value
|
|
"iDisplayLength": 5,
|
|
"sPaginationType": "bootstrap",
|
|
"oLanguage": {
|
|
"sLengthMenu": "_MENU_ records",
|
|
"oPaginate": {
|
|
"sPrevious": "Prev",
|
|
"sNext": "Next"
|
|
}
|
|
},
|
|
"aoColumnDefs": [
|
|
{ 'bSortable': false, 'aTargets': [0] },
|
|
{ "bSearchable": false, "aTargets": [ 0 ] }
|
|
]
|
|
});
|
|
|
|
jQuery('#sample_2 .group-checkable').change(function () {
|
|
var set = jQuery(this).attr("data-set");
|
|
var checked = jQuery(this).is(":checked");
|
|
jQuery(set).each(function () {
|
|
if (checked) {
|
|
$(this).attr("checked", true);
|
|
} else {
|
|
$(this).attr("checked", false);
|
|
}
|
|
});
|
|
jQuery.uniform.update(set);
|
|
});
|
|
|
|
jQuery('#sample_2_wrapper .dataTables_filter input').addClass("form-control input-small input-inline"); // modify table search input
|
|
jQuery('#sample_2_wrapper .dataTables_length select').addClass("form-control input-xsmall input-inline"); // modify table per page dropdown
|
|
jQuery('#sample_2_wrapper .dataTables_length select').select2(); // initialize select2 dropdown
|
|
|
|
// begin: third table
|
|
$('#sample_3').dataTable({
|
|
"aLengthMenu": [
|
|
[5, 15, 20, -1],
|
|
[5, 15, 20, "All"] // change per page values here
|
|
],
|
|
// set the initial value
|
|
"iDisplayLength": 5,
|
|
"sPaginationType": "bootstrap",
|
|
"oLanguage": {
|
|
"sLengthMenu": "_MENU_ records",
|
|
"oPaginate": {
|
|
"sPrevious": "Prev",
|
|
"sNext": "Next"
|
|
}
|
|
},
|
|
"aoColumnDefs": [
|
|
{ 'bSortable': false, 'aTargets': [0] },
|
|
{ "bSearchable": false, "aTargets": [ 0 ] }
|
|
]
|
|
});
|
|
|
|
jQuery('#sample_3 .group-checkable').change(function () {
|
|
var set = jQuery(this).attr("data-set");
|
|
var checked = jQuery(this).is(":checked");
|
|
jQuery(set).each(function () {
|
|
if (checked) {
|
|
$(this).attr("checked", true);
|
|
} else {
|
|
$(this).attr("checked", false);
|
|
}
|
|
});
|
|
jQuery.uniform.update(set);
|
|
});
|
|
|
|
jQuery('#sample_3_wrapper .dataTables_filter input').addClass("form-control input-small input-inline"); // modify table search input
|
|
jQuery('#sample_3_wrapper .dataTables_length select').addClass("form-control input-xsmall input-inline"); // modify table per page dropdown
|
|
jQuery('#sample_3_wrapper .dataTables_length select').select2(); // initialize select2 dropdown
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}(); |