Hi all, I noticed a rendering bug in tr:table whenever the underlying
model returns -1 (unknown) from getRowCount and paging is used: assuming
a block size of 10, then a link "next 10" is rendered for the very last
page, while is should be disabled.
A potential fix might be achieved by placing in
SelectRangeChoiceBarRenderer, after line #375:
if (!hasNextRecords) nextRecords = 0;
-- Renzo