function printForm(RECID, sREP_ID) {
    var selectedList = $('#selectedList').val();
    if (selectedList > '') {
        var param = {
            id: '#SID#',
            SCCSTMP: '#SCurrent_SCC_STMP#',
            t: (new Date()).getTime(),
            SelectRECID: RECID,
            SelectREPID: sREP_ID,
            PrintAction: 'PrintSelected'
        }
        window.open("../../dynamicpdf.max?" + $.param(param));
    } else {
        alert('Please select forms to print.');
    }
}

相关文章:

  • 2021-10-27
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-03-31
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2021-04-11
  • 2021-09-19
  • 2021-05-24
  • 2021-06-17
相关资源
相似解决方案