This page is Not Ready

Notice: The WebPlatform project, supported by various stewards between 2012 and 2015, has been discontinued. This site is now available on github.

dataPageSize

Applies to ?
## Examples

In this example, a text box is bound to the customer_name field supplied by a data source object with an ID of customer. Because the text box is located within a data-bound table, the text box is repeated to display each of the records in the data source. The DATAPAGESIZE attribute on the table limits the display to 10 records.

<table datasrc="#customer" datapagesize=10>
   <tr><td><input type=texbox datafld="customer_name"></td></tr>
</table>

Notes

Remarks

The firstPage and lastPage methods are used to navigate directly to the first and last pages of a databound table, respectively. The nextPage and previousPage methods are used to navigate sequentially through the pages of a databound table.

Syntax

See also

Related pages

Attributions