This is very easy to do, you just have to know what to look for.
First, if generating the popup using the showModalDialog javascript method, try changing this to window.open instead to enable copy-paste.
Next, to fix the scrolling and resizing, added the scrollbar=yes and resizable=yes features to the feature parameter of the window.open method.
Here's what the code will look like:
window.open('/_layouts/ConfigureReport.aspx?SITEURL={SiteUrl}&ITEMURL={ItemUrl}&ITEMID={ItemId}&LISTID={ListId}&ACTION={ASSEMBLE}','','height=900,width=850,scrollbars=yes,resizable=yes');


Comments