Package com.google.code.jqwicket

Source Code of com.google.code.jqwicket.KwicksPage

package com.google.code.jqwicket;

import org.apache.wicket.markup.html.WebMarkupContainer;

import com.google.code.jqwicket.ui.kwicks.KwicksBehavior;
import com.google.code.jqwicket.ui.kwicks.KwicksOptions;

public class KwicksPage extends DemoPage {

  public KwicksPage() {
    add(new WebMarkupContainer("kwicks").add(new KwicksBehavior(
        new KwicksOptions().max(205).spacing(5))));
  }

  /**
   * {@inheritDoc}
   *
   * @see com.google.code.jqwicket.DemoPage#getExampleTitle()
   */
  @Override
  protected String getExampleTitle() {
    return "JQuery Kwicks Plugin example";
  }

}
TOP

Related Classes of com.google.code.jqwicket.KwicksPage

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.