在GWT中,当使用SimplePager时,LastPage按钮被禁用-但是为什么呢?
请参见“添加分页控件”部分中的示例
http://code.google.com/webtoolkit/doc/latest/DevGuideUiCellWidgets.html
如果将示例复制到其中并运行它,将会看到LastPageButton被禁用了吗?
谢谢
最佳答案
它不是LastPageButton,而是FastForward Button,它被禁用,因为用于初始化寻呼机的构造函数将其设置为一个值,如果剩余项目数大于1000(并且该示例仅包含200个项目,只需将其增加到2000即可看到)。
有一个LastPageButton,但是在示例中使用的构造函数中将其禁用。您可以通过使用以下构造函数来初始化寻呼机来启用LastPageButton:
public SimplePager(TextLocation location, Resources resources, boolean showFastForwardButton,
final int fastForwardRows, boolean showLastPageButton)