All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.googlecode.wicketslides.ImageLoader Maven / Gradle / Ivy

Go to download

wicket adaptor for Smoothgallery javascript slideshow library based on Mootools 1.2

The newest version!
package com.googlecode.wicketslides;

import java.io.Serializable;

import org.apache.wicket.AttributeModifier;
import org.apache.wicket.markup.html.basic.Label;
import org.apache.wicket.markup.html.image.Image;
import org.apache.wicket.markup.html.list.ListItem;

public class ImageLoader implements Serializable {

   protected void populate(final ListItem item) {
      item.add(new Image("image").add(new AttributeModifier("src", true, item.getModel())));
      item.add(new Image("thumb").add(new AttributeModifier("src", true, item.getModel())));
      item.add(new Label("title", "TITLE"));
      item.add(new Label("description", "description"));
   }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy