Insert a button into the data grid on the List page. This button will create and open a PDF file of the current record's View page.
Add the following code to the Client before event of the button:
var params = {
pageType: 'view',
keys: row.getKeys()
};
Runner.PDF.open( params, pageObj );
return false;
Leave the Server and Client after events empty.
See also: