| Package | org.openzet.controls |
| Class | public class PagingLinkBar |
| Inheritance | PagingLinkBar mx.controls.NavBar |
Default MXML PropertydataProvider
| Property | Defined by | ||
|---|---|---|---|
| currentPage : uint
Property to store the current page index.
| PagingLinkBar | ||
| fetchSize : uint
Row count.
| PagingLinkBar | ||
| numPages : uint
Property to specify how many pages to show.
| PagingLinkBar | ||
| totalCount : uint
Total count of listings.
| PagingLinkBar | ||
| totalPage : uint [read-only]
Number of Total Page.
| PagingLinkBar | ||
| Method | Defined by | ||
|---|---|---|---|
|
Constructor
| PagingLinkBar | ||
| Event | Summary | Defined by | ||
|---|---|---|---|---|
| Dispatched when next page is viewed. | PagingLinkBar | |||
| Dispatched when users click on a page index. | PagingLinkBar | |||
| Dispatched when previous page is viewed. | PagingLinkBar | |||
| currentPage | property |
currentPage:uint [read-write]Property to store the current page index.
This property can be used as the source for data binding.
Implementation public function get currentPage():uint
public function set currentPage(value:uint):void
| fetchSize | property |
fetchSize:uint [read-write]Row count.
The default value is 10.
This property can be used as the source for data binding.
Implementation public function get fetchSize():uint
public function set fetchSize(value:uint):void
| numPages | property |
numPages:uint [read-write]Property to specify how many pages to show.
The default value is 10.
This property can be used as the source for data binding.
Implementation public function get numPages():uint
public function set numPages(value:uint):void
| totalCount | property |
totalCount:uint [read-write]Total count of listings.
This property can be used as the source for data binding.
Implementation public function get totalCount():uint
public function set totalCount(value:uint):void
| totalPage | property |
totalPage:uint [read-only]Number of Total Page.
Implementation public function get totalPage():uint
| PagingLinkBar | () | constructor |
public function PagingLinkBar()Constructor
| nextPage | event |
| pageClick | event |
| prevPage | event |