2
我正在使用celltable,GWT2.3.0GWT CELLTABLE pager如何確定哪個按鈕被用戶點擊?
如何確定哪個按鈕被用戶點擊? 有沒有什麼辦法找出下一個,上一個,最後一個&點擊了FIRST按鈕?
在這個問題上的任何幫助或指導,將不勝感激
我正在使用celltable,GWT2.3.0GWT CELLTABLE pager如何確定哪個按鈕被用戶點擊?
如何確定哪個按鈕被用戶點擊? 有沒有什麼辦法找出下一個,上一個,最後一個&點擊了FIRST按鈕?
在這個問題上的任何幫助或指導,將不勝感激
嘛easist方式,我現在看到的,是寫自己的簡單尋呼機和覆蓋「末頁」,「lastPageStart」,「下一頁」和「|上一頁「 功能。
在我的測試例子,我建立〜5min後它lookes這樣的:
public class Ui_mySimplePager extends SimplePager {
public Ui_mySimplePager(TextLocation center, Resources pagerResources,
boolean b, int i, boolean c) {
super(center, pagerResources, b, i, c);
}
@Override
public void lastPage() {
Window.alert("lastPage");
super.lastPage();
}
@Override
public void lastPageStart() {
Window.alert("lastPageStart");
super.lastPageStart();
}
@Override
public void nextPage() {
Window.alert("nextPage");
super.nextPage();
}
@Override
public void previousPage() {
Window.alert("previousPage");
super.previousPage();
}
}