My less-able Cognos web users are complaining of the steps required to print all rows and columns of a PowerPlay Web report.
I have cobbled together some java in the ppcustom.js file so that clicking on one of the custom buttons will print the data frame, but the output is identical that one gets when clicking on the normal 'print' button
Is there an easy way to access all the data in the report to print it or should I put in for either an intensive Java course or 20" monitors for all users?
soi la, soi carre
I have cobbled together some java in the ppcustom.js file so that clicking on one of the custom buttons will print the data frame, but the output is identical that one gets when clicking on the normal 'print' button
Code:
{function framePrint(whichFrame)
{
parent[whichFrame].focus();
parent[whichFrame].print();
}
framePrint('Data');
}
Is there an easy way to access all the data in the report to print it or should I put in for either an intensive Java course or 20" monitors for all users?
soi la, soi carre