GWT SimplePager - LastPageButton已禁用?

时间:2011-07-28 10:18:16

标签: gwt

在GWT中使用SimplePager时,LastPage按钮被禁用 - 但为什么?

请参阅以下部分中的示例:“添加分页控件” http://code.google.com/webtoolkit/doc/latest/DevGuideUiCellWidgets.html

如果您复制样本并运行它,您会看到LastPageButton已被禁用?

由于

1 个答案:

答案 0 :(得分:10)

这不是LastPageButton,而是FastForward Button,它被禁用,因为用于初始化寻呼机的构造函数将其设置为一个值,如果剩余的项目数大于1000,它将被启用(并且示例仅包含200项,只需将其增加到2000即可看到它。 有一个LastPageButton,但在示例中使用的构造函数中禁用它。您可以使用以下构造函数启用LastPageButton来初始化分页器:

  public SimplePager(TextLocation location, Resources resources, boolean showFastForwardButton,
      final int fastForwardRows, boolean showLastPageButton)