Hi,
I am using DataTables button as a link to another page, code is shown below. However I cannot find a way to handle wheel click on the button in order to open the same link in new tab because href is set to '#'. It seems like the action is never executed on a wheel click, so e.preventDefault() won't help...
Is there a way to support wheel click?
action : function(e, dt, node, config) {
var processedLink = link;
ref.forEach(function(currentValue, index, array) {
processedLink = processedLink.replace("{" + index + "}", dataTablesSelected(dt, currentValue, button.attr("extend")));
});
window.location = processedLink;
}