buli
2023-05-22 71b93327e8f3fb3bffffc7c033c1f782e7b6ab32
force-app/main/default/staticresources/OpportunityPCLJs.js
@@ -96,7 +96,6 @@
    } else {
        searchOpp();
    }
    windowResize();
}
@@ -156,7 +155,18 @@
    }
}
function resizeTable() {
    var tableWidth = 0;
    j$('body .pbBody table#tableHeader tr.headerRow td').each(function() {
        var colClass = getColClassName(this);
        if (colClass != 'col_Scroll') {
            var headerCol = j$('body .pbBody table.list tr.headerRow td.' + colClass);
            tableWidth += headerCol.width();
        }
    });
    j$('table#tableData').css('width', (tableWidth + 20) + 'px');
    j$('table#tableHeader').css('width', (tableWidth + 20) + 'px');
}
function sortTableJs_Account(key) {
    if (typeof event.stopPropagation != "undefined") {