Index: FOPQueueMgr.csp =================================================================== diff -u -r38 -r115 --- FOPQueueMgr.csp (.../FOPQueueMgr.csp) (revision 38) +++ FOPQueueMgr.csp (.../FOPQueueMgr.csp) (revision 115) @@ -72,6 +72,21 @@ } return; } + function QItemSelectFtpTempDocs () { + var coll = document.frmQItemsList.getElementsByTagName("INPUT"); + if (coll!=null) { + for (var i=0; i < coll.length; i++) { + LoopID = DollarGet(coll[i].getAttribute('type')); + if (LoopID=="checkbox") { + coll[i].checked = (TaskContainsDocTempFtp(coll[i].parentElement.parentElement)); + } + } + } + return; + } + function TaskContainsDocTempFtp(Row) { + return (Row.tagName == "TR" && Row.innerHTML.indexOf("Doc-temp;Ftp") > 0); + } function disableEnterKey(e) { var key = (window.event ? window.event.keyCode : e.which ); // IE : FireFox @@ -142,6 +157,7 @@

   +