| java.lang.Object org.zkoss.zk.ui.event.Event org.zkoss.zul.event.PagingEvent
PagingEvent | public class PagingEvent extends Event (Code) | | Used to notify that a new page is selected by the user, or by
Paginal (such as
org.zkoss.zul.Paging ).
It is used for paging long content.
author: tomyeh |
Constructor Summary | |
public | PagingEvent(String name, Component target, int actpg) Construct a paging event. | public | PagingEvent(String name, Component target, Pageable pageable, int actpg) Construct a paging event that the target is different
from the page controller.
Parameters: target - the event target Parameters: pageable - the paging controller. | public | PagingEvent(String name, Component target, Paginal paginal, int actpg) Construct a paging event that the target is different
from the page controller. |
PagingEvent | public PagingEvent(String name, Component target, int actpg)(Code) | | Construct a paging event.
Parameters: target - the target must be a paginal component, i.e.,implements Pageable. Parameters: actpg - the active page |
PagingEvent | public PagingEvent(String name, Component target, Pageable pageable, int actpg)(Code) | | Construct a paging event that the target is different
from the page controller.
Parameters: target - the event target Parameters: pageable - the paging controller. In other words,it is usually Paginal. |
getPageable | public Pageable getPageable()(Code) | | Returns the pageable controller.
since: 2.4.1 |
|
|