No, there isn't a switch for that. The option isn't hidden based on a fixed number, but on a multiple of the current visible size - if there's more than (30 * visible options), we won't do a Show All. That comes from SelectRangeChoiceBarRenderer.java:
/** * @todo This should be pulled from a skin property */ static private final long _MAX_VISIBLE_OPTIONS = 30L; ... and note the "todo" there. :) -- Adam On 8/2/07, Döring Markus <[EMAIL PROTECTED]> wrote: > Hello, > > The range navigator of a tr:table has an item „display all". > > I've already seen that this option is hidden if there are a lot of rows in > the table (maybe over 500 or so). > > Is there an easy way to configure when the option is displayed and when not > (i want to hide the option as soon as more than 50 rows in total are in the > table) > > > > Thx for help > > Markus Döring > > TCC Products GmbH > > Anwendungsentwicklung > > Benzstr. 3 > 71696 Möglingen > > > mail: [EMAIL PROTECTED] > >

