I'm not sure about rollover - are you referring to the rowover that's in the installation README.txt file?
Code:
if (object.className == 'dataTableRow') object.className = 'dataTableRowOver';
If so, the intent is to change the 'className' of text when the mouse is over the row. This changes the color as defined in the css style sheet.
admin/includes/stylesheet.css:
Code:
.dataTableRow{
background-color:#f2f1ee;
}
.dataTableRowOver{
background-color:#ffffff;
cursor:pointer;
cursor:hand;
}
All you'll see is the color changes for the row you're over.
The report doesn't include the all products in all orders option - I believe that would quickly become too big and clumsy, where there are other reports for this.
But, I did put a mod in that you can limit the report to a specific product ID. So, if you know the product ID's number, you can generate a report of all orders or customers that contain this product.
Bookmarks