diff src/main/java/de/mpiwg/web/ApplicationBean.java @ 5:5316e79f9a27

Implementation of search pagination and lazy loading to display the result set of a search.
author "jurzua <jurzua@mpiwg-berlin.mpg.de>"
date Mon, 16 Mar 2015 11:25:36 +0100
parents 7682c04c63a8
children
line wrap: on
line diff
--- a/src/main/java/de/mpiwg/web/ApplicationBean.java	Wed Mar 11 16:32:06 2015 +0100
+++ b/src/main/java/de/mpiwg/web/ApplicationBean.java	Mon Mar 16 11:25:36 2015 +0100
@@ -72,6 +72,29 @@
 		return getRootServer() + "/resources/images/search_32.png";
 	}
 	
+	public String getPaginatorFirst(){
+		return getRootServer() + "/resources/images/arrow-first.gif";
+	}
+	
+	public String getPaginatorFr(){
+		return getRootServer() + "/resources/images/arrow-fr.gif";
+	}
+	
+	public String getPaginatorPrevious(){
+		return getRootServer() + "/resources/images/arrow-previous.gif";
+	}
+	
+	public String getPaginatorNext(){
+		return getRootServer() + "/resources/images/arrow-next.gif";
+	}
+	public String getPaginatorFf(){
+		return getRootServer() + "/resources/images/arrow-ff.gif";
+	}
+	
+	public String getPaginatorLast(){
+		return getRootServer() + "/resources/images/arrow-last.gif";
+	}
+	
 	public String getJSConfirmationDelete(){
 		return "if(!confirm('Do you really want to delete this?')){ return false; };";
 	}