I would like to share my solution how to copy text from repeating groups to clipboard.
Add this script into page header section
<script>
function copyToClipboard(element) {
var $temp = $("<input>");
$("body").append($temp);
$temp.val($(element).text()).select();
document.execCommand("copy");
$temp.remove();
}
</script>
Create repeating group and add HTML element in to cell
Comment: I’ve added p infront of Current cell’s index just in case if I’ll have several fields to copy. Add whatever dynamic text you wish.
This is great stuff. One question though: I’m using a multiline input and on copy it eliminates spaces and enters. Can it also copy that info so paragraphs are preserved?