struts2.0+E3.Table0.8分頁功能的實現
由於E3.Table0.8的分頁出來沒好久,所以還有些小功能暫未實現,以後在完善.
首先需要匯入以下幾個包:
ajaxanywhere-1.2.1.jar,e3.jar,velocity-1.4.jar,dom4j-1.6.jar........等
package com.trendcom.webapp.action;
import java.util.ArrayList;
import java.util.List;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import com.googlecode.jsonplugin.annotations.JSON;
import com.trendcom.model.InfoFile;
import com.trendcom.model.InfoIssue;
import com.trendcom.service.FileManageService;
import com.trendcom.service.InfoFileService;
import com.trendcom.service.InfoIssueService;
@Controller
public class InfoIssueAction extends BaseAction {
public InfoIssueAction(){};
@Autowired
InfoIssueService infoIssueService;
List<InfoIssue> root;
InfoIssue infoIssue;
private int pageSize;
public String showInfoIssue(){
totalProperty=infoIssueService.getAllInfoIssue().size();
root=infoIssueService.getInfoIssue(start, 5);
return "listSuccess";
}
public InfoIssue getInfoIssue() {
return infoIssue;
}
public void setInfoIssue(InfoIssue infoIssue) {
this.infoIssue = infoIssue;
}
public int getTotalProperty() {
return totalProperty;
}
public Boolean getSuccess() {
return success;
}
public int getPageSize() {
return pageSize;
}
public void setPageSize(int pageSize) {
this.pageSize = pageSize;
}
@JSON(name="root")
public List<InfoIssue> getRoot() {
return root;
}
public void setRoot(List<InfoIssue> root) {
this.root = root;
}
}
<%@ page language="java" pageEncoding="utf-8"%> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> <%@ taglib prefix="e3t" uri="/e3/table/E3Table.tld" %> <HTML> <HEAD> <META http-equiv=Content-Type content="text/html; charset=utf-8"> </HEAD> <body> <table><tr><td ><div id="x"> </div></td></tr></table> <table><tr><td><div id="y"> </div></td></tr></table> <c:url var="uri" value="${basePath}infoIssue/InfoIssue!show.action" /> <e3t:table id="userTable" var="info" varStatus="infoIssueStatus" items="infoIssue" caption="使用者管理" uri="${uri}" pageSize="2" skin="E3002" height="400" width="400" > <e3t:column property="issueid" title="使用者ID" width="120"> </e3t:column> <e3t:column property="caption" title="標題" width="100"/> <e3t:column property="maketop" title="是否置頂" width="60" /> <e3t:column property="issued" title="是否釋出" width="100" /> </e3t:table> </body> </HTML>
相關文章
- 分頁功能的實現
- jsp分頁功能的實現JS
- DataGridView分頁功能的實現View
- [SQL Server]分頁功能的實現SQLServer
- 使用 jQuery 實現分頁功能jQuery
- web 實現分頁列印功能Web
- Java Web(十一) 分頁功能的實現JavaWeb
- DjangoRestFramework 實現分頁功能與搜尋功能DjangoRESTFramework
- 文章內容分頁功能實現
- Vue + element.ui table 分頁功能+搜尋功能的實現VueUI
- aspnetpager+repeater+oracle實現分頁功能Oracle
- WPF DataGrid分頁功能實現程式碼
- 分頁的實現
- Vue + Element UI + Lumen 實現通用表格功能 - 分頁VueUI
- Hibernate 的分頁實現
- MyBatis實現分頁的方式MyBatis
- elementUI實現分頁UI
- ASP.NET中Repeater控制元件實現分頁功能ASP.NET控制元件
- vue + axios 實現分頁引數傳遞,高階搜尋功能實現VueiOS
- 滑動視窗式分頁的實現
- Spring Boot入門系列(十六)使用pagehelper實現分頁功能Spring Boot
- Java Web 分頁實現JavaWeb
- Mybatis分頁實現流程MyBatis
- DjangoRestFramework框架三種分頁功能的實現 - 在DjangoStarter專案模板中封裝DjangoRESTFramework框架封裝
- 【清清月兒】用SQL 2005的ROW_NUMBER() 實現分頁功能SQL
- 關於黑馬旅遊網的實現 --- 分頁查詢功能,點選分頁碼不顯示資料
- iOS 類知乎”分頁”效果的實現?iOS
- MYSQL SQLServer分頁查詢的實現MySqlServer
- Repeater控制元件的分頁實現控制元件
- 個性化的分頁實現 (轉)
- PHP 使用 Redis 實現分頁PHPRedis
- indexdb實現分頁查詢Index
- 使用LayUI實現AJAX分頁UI
- 47.DRF實現分頁
- Django 前端BootCSS 實現分頁Django前端bootCSS
- Oralce 分頁 三種實現
- gridview中實現分頁View
- Java實現後端分頁Java後端