> There
> are currently 450 odd items in the library list which takes 1.5
> seconds to render in a simple fET write statement, but takes 13
> seconds to render as a table. And that was without making the table
> sortable. That was in FF3 too - I wouldn't like to try that in IE!
>
For so many items you could use the pagewise script, since you anyway
have to scoll down the list.
For example, I have a fEt in a pretty huge TW of 3.5 MB and almost
1500 item, put it still takes much less to render it this way:
http://change.tiddlyspot.com/#AllTiddlersPageWise
However, with a slow Internet connection, better to download this TW
first, before you view this tiddler:
http://change.tiddlyspot.com/download
Other than that, and the TableSortingPlugin, you can allways place the
differently sorted lists into tabs, like this:
tiddler title: 'Example'
______________________
<<tabs fEt
"By Type" "sort by type" Example##docType
"By Author" "sort by Author" Example##author
>>>/%
!docType
<<forEachTiddler
where
'tiddler.tags.contains("libEntry")'
sortBy 'tiddler.data("docType")'
write
.......etc
!author
<<forEachTiddler
where
'tiddler.tags.contains("libEntry")'
sortBy 'tiddler.data("autor")'
write
.......etc
!end
%/
__________________________
Regards..