RenderingContext arc,
TableRenderingContext tContext,
UIComponent table)
throws IOException
{
UIXHierarchy comp = (UIXHierarchy) table;
Object focusKey = comp.getFocusRowKey();
final Object oldKey = comp.getRowKey();
try
{
// set the collection that is being displayed:
comp.setRowKey(focusKey);
super.renderRangePagingControl(context, arc, tContext, table);
}
finally
{
comp.setRowKey(oldKey);
}
}