You need to extend the SimplePager.Resources interface and provide your own images. Then pass an instance of these resources to the SimplePager constructor:
public interface MyPagerImages extends SimplePager.Resources {
then when building SimplePager:
MyPagerImages myImages = GWT.create(MyPagerImages.class); SimplePager pager = new SimplePager(SimplePager.TextLocation.CENTER, myImages, true, 1000 , false);
source share