Hi - I didn’t know we had limits on posts… - never mind.
I made a version of the JQuery extension with lots of console.logs to help you with debugging (attached below), but given what you’ve just said, I think the problem is simply where you unzipped the files - on my system, the directory structure in the compressed file is maintained - ie the RRListView.php file is in the extensions folder, then there is the sub-folder RRListView in the same extensions folder which contains the jquery.rr.yiilistview.js file (and where you should copy the files from /framework/zii/widgets/assets/listview, apart from jquery.yiilistview.js, in order to use the same images and things as with the original), so the RRListView.php folder should be in the extensions root, and the Javascript file in the RRListView sub-folder, not both in the same (we don’t want to publish the RRListView.php file as part of the assets).
So, to solve, simply delete the RRListView files you put there already, then unzip the compressed file directly in the extensions folder so that it puts the files in the right place:
extensions/RRListView.php
extensions/RRListView/jquery.rr.yiilistview.js
extensions/RRListView/[all the other CListView asset files]
If you want to use the (primitive) debugging version of the JQuery extension, simply unzip and copy the attached file over the extensions/RRListView/jquery.rr.yiilistview.js file - just remember to copy the original over it again when finished, because the debug uses "console.log", which will cause error in IE.
Hope everything works for you with this - let me know if not.