Merge branch 'support/2.5'

This commit is contained in:
Molkobain
2019-03-25 15:47:51 +01:00

View File

@@ -118,8 +118,13 @@ function sprintf(format, etc) {
$(':input[name^=storedSelection]', pager).remove(); $(':input[name^=storedSelection]', pager).remove();
} }
function storeSelection(table, pager, id, value, disabled=false) function storeSelection(table, pager, id, value, disabled)
{ {
if(disabled == undefined)
{
disabled = false;
}
var valueToStore = value; var valueToStore = value;
if (table.config.selectionMode == 'negative') if (table.config.selectionMode == 'negative')
{ {