64 lines
1.7 KiB
JavaScript
64 lines
1.7 KiB
JavaScript
var entityMap = {
|
|
'&': '&',
|
|
'<': '<',
|
|
'>': '>',
|
|
'"': '"',
|
|
"'": ''',
|
|
'/': '/',
|
|
'`': '`',
|
|
'=': '='
|
|
};
|
|
|
|
function escapeHtml(string) {
|
|
if (string == null) {
|
|
return '';
|
|
}
|
|
return String(string).replace(/[&<>"'`=\/]/g, function (s) {
|
|
return entityMap[s];
|
|
});
|
|
}
|
|
|
|
//selectedIds - This variable will be used on views. It can not be renamed
|
|
var selectedIds = [];
|
|
|
|
|
|
function clearMasterCheckbox(tableSelector) {
|
|
$($(tableSelector).parents('.dt-scroll').find('input.mastercheckbox')).prop('checked', false).change();
|
|
selectedIds = [];
|
|
}
|
|
|
|
|
|
function updateMasterCheckbox(tableSelector) {
|
|
var selector = 'mastercheckbox';
|
|
var numChkBoxes = $('input[type=checkbox][class!=' + selector + '][class=checkboxGroups]', $(tableSelector)).length;
|
|
var numChkBoxesChecked = $('input[type=checkbox][class!=' + selector + '][class= checkboxGroups]:checked', $(tableSelector)).length;
|
|
|
|
$('.mastercheckbox', $(tableSelector)).prop('checked', numChkBoxes == numChkBoxesChecked && numChkBoxes > 0);
|
|
}
|
|
|
|
function updateTableSrc(tableSelector, isMasterCheckBoxUsed) {
|
|
var dataSrc = $(tableSelector).DataTable().data();
|
|
$(tableSelector).DataTable().clear().rows.add(dataSrc).draw();
|
|
$(tableSelector).DataTable().columns.adjust();
|
|
|
|
if (isMasterCheckBoxUsed) {
|
|
clearMasterCheckbox(tableSelector);
|
|
}
|
|
}
|
|
|
|
|
|
function updateTable(tableSelector, isMasterCheckBoxUsed) {
|
|
$(tableSelector).DataTable().ajax.reload();
|
|
$(tableSelector).DataTable().columns.adjust();
|
|
|
|
if (isMasterCheckBoxUsed) {
|
|
clearMasterCheckbox(tableSelector);
|
|
}
|
|
}
|
|
|
|
|
|
function updateTableWidth(tableSelector) {
|
|
if ($.fn.DataTable.isDataTable(tableSelector)) {
|
|
$(tableSelector).DataTable().columns.adjust();
|
|
}
|
|
} |