adaliabooks: Works for me too in Chrome...
There was a whole thread about this a while back and a few of us came up with various ways to do it and print a nice list... I'll see if I can dig it up at some point.
Edit: Well, works in the catalogue and the wishlist, doesn't work in the library (won't drag at all, never mind select the text)
The problem is a set of "user-select: none" rules attached to .product-row via a CSS rule that matches [ng-click].
(The "user-select: none" is intended for building web equivalents native widgets like action buttons where it's natural for the text to be unselectable. I'm assuming that Angular's default CSS simply assumes that anything clickable should behave that way.)
The simplest solution is to reset the browser to default behaviour by sticking this CSS in a userstyle...
.product-row {
-webkit-user-select: auto !important;
-moz-user-select: auto !important;
-ms-user-select: auto !important;
user-select: auto !important;
}
...but, if you want something more polished, set it to "text" (rather than "auto") on just the fields you want your copy-paste to include.