Conor wrote:In the file fi.js inside the images folder Images/FancyIndex/fi.js you would change the line:
Code: Select all
headers: {0: {sorter:'titles'}, 6: {sorter:'movieratings'}},
for
Code: Select all
headers: {0: {sorter:'titles'}, 1: {sorter:'none'}, 6: {sorter:'movieratings'}},
Actually, using your code snippets as a major learning point, I searched the Web a bit and found a very helpful Web page
http://tablesorter.com/docs/. There I discovered that all you really need to do to disable sorting on a column is:
Code: Select all
headers: {0: {sorter:'titles'}, 1: {sorter: false}},
So the additional parser in fi.shared.js isn't needed after all!
Conor wrote:For the centered margin you can try the following CSS:
Code: Select all
<td width="55" style="text-align: center;" ><img src="[key:coverImageURL]" style="width: 50px; margin:auto;" border="0" style="padding-right: 2px;"></td>
Worked like a charm! I fully expected that waiting for all the little thumbnails to download would be slow, and I wasn't disappointed. (See
http://web.me.com/jschaffe/Rock,%20Pop,%20R&B/ for an example.) I'm wondering whether resizing each row to fit the height of the image contributes to how long it takes. Is increasing the default row height possible? Would it help speed things up at all? And would it still permit the height to be increased for tall boxed-set images?
Also, it looks like the images downloaded are quite large. Somehow I had the impression CDpedia also generated thumbnail-sized images. If so it might be much faster to download those instead.
Any other ideas on speeding up the download of the thumbnails?
And finally, it looks like inserting:
Code: Select all
href="details/page[key:incrementalNumber].html">
somewhere in the line:
Code: Select all
<td width="55" style="text-align: center;" ><img src="[key:coverImageURL]" style="width: 50px; margin:auto;" border="0" style="padding-right: 2px;"></td>
might also make the images active links to the detail. Am I off base here?
By the way, this has been a lot of fun, and I really appreciate all your help!