comparison src/main/webapp/componentes/paginator.jsp @ 0:3e62083dbcbf

First commit. This project comes from LGServer. We removed the framework icefaces. Now, LGServices uses just JSP and jquery.
author "jurzua <jurzua@mpiwg-berlin.mpg.de>"
date Thu, 23 Apr 2015 15:46:01 +0200
parents
children 881e7591f3e4
comparison
equal deleted inserted replaced
-1:000000000000 0:3e62083dbcbf
1 <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
2
3 <jsp:useBean id="sessionBean" class="de.mpiwg.web.jsp.SessionBean" scope="session" />
4
5
6
7 <table style="width: 300px; margin-left: auto;margin-right: auto;">
8 <tr>
9 <td>
10 <input
11 type="image"
12 src="<%=sessionBean.getApplicationBean().getPaginatorFirst()%>"
13 onclick="setAction('firstPage', 'searchForm');"/>
14 </td>
15 <td>
16 <input
17 type="image"
18 src="<%=sessionBean.getApplicationBean().getPaginatorFr()%>"
19 onclick="setAction('fastRewind', 'searchForm');"/>
20 </td>
21 <td>
22 <input
23 type="image"
24 src="<%=sessionBean.getApplicationBean().getPaginatorPrevious()%>"
25 onclick="setAction('previousPage', 'searchForm');"/>
26 </td>
27 <td><%=sessionBean.getSearchPage().getPaginator().getRecordStatus()%></td>
28 <td>
29 <input
30 type="image"
31 src="<%=sessionBean.getApplicationBean().getPaginatorNext()%>"
32 onclick="setAction('nextPage', 'searchForm');"/>
33 </td>
34 <td>
35 <input
36 type="image"
37 src="<%=sessionBean.getApplicationBean().getPaginatorFf()%>"
38 onclick="setAction('fastForward', 'searchForm');"/>
39 </td>
40 <td>
41 <input
42 src="<%=sessionBean.getApplicationBean().getPaginatorLast()%>"
43 type="image"
44 onclick="setAction('lastPage', 'searchForm');"/>
45 </td>
46 </tr>
47 </table>