mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-11 18:21:04 +08:00
57 lines
1.7 KiB
JavaScript
57 lines
1.7 KiB
JavaScript
(function() {
|
|
/**
|
|
* Initialize the hands on table on the given
|
|
* element with the specified data.
|
|
* @param el - The jQuery element/s selector.
|
|
*/
|
|
function initializeHandsonTable(el) {
|
|
var input = el.siblings('input.hot-table-contents');
|
|
var inputObj = JSON.parse(input.attr('value'));
|
|
var data = inputObj.data;
|
|
|
|
// Special handling if this is a repository table
|
|
if (input.hasClass('hot-repository-items')) {
|
|
var headers = inputObj.headers;
|
|
var parentEl = el.closest('.report-module-repository-element');
|
|
var order = parentEl.attr('data-order') === 'asc';
|
|
|
|
el.handsontable({
|
|
disableVisualSelection: true,
|
|
rowHeaders: true,
|
|
colHeaders: headers,
|
|
columnSorting: false,
|
|
editor: false,
|
|
copyPaste: false,
|
|
formulas: true
|
|
});
|
|
el.handsontable('getInstance').loadData(data);
|
|
el.handsontable('getInstance').getPlugin('columnSorting').sort(3, order);
|
|
} else {
|
|
el.handsontable({
|
|
disableVisualSelection: true,
|
|
rowHeaders: true,
|
|
colHeaders: true,
|
|
editor: false,
|
|
copyPaste: false,
|
|
formulas: true
|
|
});
|
|
el.handsontable('getInstance').loadData(data);
|
|
}
|
|
}
|
|
|
|
/** Convert Handsone table to normal table **/
|
|
function reportHandsonTableConverter() {
|
|
$.each($('.hot-table-container'), function(index, value) {
|
|
var table = $(value);
|
|
var header = table.find('.ht_master thead');
|
|
var body = table.find('.ht_master tbody');
|
|
table.next().append(header).append(body);
|
|
table.remove();
|
|
});
|
|
}
|
|
|
|
$('.hot-table-container').each(function() {
|
|
initializeHandsonTable($(this));
|
|
reportHandsonTableConverter();
|
|
});
|
|
}());
|