Official Support Area, Q&As, Discussions, Suggestions and Bug reports.
Forum's Guidelines
Maybe it could be useful for somebody
document.addEventListener('DOMContentLoaded', function () {
document.getElementById('closeAllButton').addEventListener('click', closeAll);
document.getElementById('openAllButton').addEventListener('click', openAll);
function openAll() {
var icons = document.querySelectorAll('.pivot-exp-col.fa-plus-square');
icons.forEach(function (icon) {
icon.click();
});
}
function closeAll() {
var icons = document.querySelectorAll('.pivot-exp-col.fa-minus-square');
icons.forEach(function (icon) {
icon.click();
});
}
})
Let KoolReport help you to make great reports. It's free & open-source released under MIT license.
Download KoolReport View demo