我正在使用GWT2.3。 我們通過重寫SimplePager開發了CustomPager。GWT SimplePager:如何在傳呼機中提供GoTo功能?
我們覆蓋createText()方法,使得我們顯示的字符串,如「第1頁4」使用下面的代碼
public String createText() {
if(searchRecordCount%pageSizeForText == 0){
totalPages = searchRecordCount/pageSizeForText;
}else{
totalPages = (searchRecordCount/pageSizeForText) + 1;
}
NumberFormat formatter = NumberFormat.getFormat("#,###");
return "Page "+formatter.format(this.getPage()+1) + " of " + formatter.format(totalPages);
}
現在我想使用文本框的當前頁的方式,使用戶可以在文本框中輸入頁碼。 (功能轉到進入PAGENUMBER)
createText()返回字符串,所以我不能用戶的textBox;)+不能提供的css
我怎樣才能做到這一點?有什麼辦法可以解決這個問題嗎?解決方法如果任何或示例代碼
感謝您的答覆。在#1答案:如何在createText()中添加SafeHtmlTemplates? – StackOverFlow
使用「SaveHTMLBuilder」或「SaveHTMLTemplate」。請參閱[這裏](http://code.google.com/webtoolkit/doc/latest/DevGuideSecuritySafeHtml.html#Creating_SafeHtml_Values)詳細信息。 –
從onRangeOrRowCountChanged()和createText()的輸出稱爲createText()方法設定爲字符串中SimplePager.java不是HTML :(即html_label.setText(createText());應該有htmlLabel.setHtml(」 ... HTML或串「。) – StackOverFlow