Package org.cyclop.web.components.pagination

Source Code of org.cyclop.web.components.pagination.PageJumpNavigationLink

package org.cyclop.web.components.pagination;

import org.apache.wicket.ajax.markup.html.navigation.paging.AjaxPagingNavigationLink;
import org.apache.wicket.markup.html.navigation.paging.IPageable;
import org.cyclop.web.components.iterablegrid.IterableGridView;

/**
* Link for: first,last page
*
* @author Maciej Miklas
*/
class PageJumpNavigationLink extends AjaxPagingNavigationLink {

  public PageJumpNavigationLink(String id, IPageable pageable, long pageNumber) {
    super(id, pageable, pageNumber);
  }

  @Override
  protected boolean isLinkEnabled() {
    if (pageable instanceof IterableGridView) {
      IterableGridView iterableGridView = (IterableGridView) pageable;
      if (iterableGridView.hasMoreData()) {
        return false;
      }
    }

    return super.isLinkEnabled();
  }
}
TOP

Related Classes of org.cyclop.web.components.pagination.PageJumpNavigationLink

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.