This behavior consists of a bar that presents links for First, Previous, Next, Last. In addition though, the page navigation includes (between the Previous and Next links) links to a certain number of consecutive pages (groups of records). This way, you can access a specific page with a single click.
Recordset:
The recordset you want paging
Repeat area container:
The HTML element in the page where insert the repeat area elements.
Supported elements are: DIV SPAN TD TABLE
Pagination container:
The HTML element in the page where insert the pagination elements.
This elements can be repeated more than one times.
Supported elements are: DIV SPAN TD TABLE
Repeat area template:
The HTML template of the repeat area. The extension will repeat this template for each record in your recordset.
To insert dynamic value from the record fields you must use this method:
<tr>
<td><a href="EditPage.asp?id=[id]">Edit</a></td>
<td>[name]</td>
</tr>
The extension will replace the part between [] with the value of the correspondant record field. Any formatting of this replaced values must be inside the recordset.
Repeat area template from file:
Alternatively the template of the repeat area can be saved in a file
Header area template:
The HTML template of the repeat area header.
Header area template from file:
Alternatively the template of the repeat area header can be saved in a file
Records per page:
How many records you want display for each page
Number of pages:
Specify how many links to consecutive pages will be displayed in the navigation bar, between the Previous and Next links.
The default value is 5.
Link style:
The css style for the links in the navigation bar
Current page style:
The css style for the current page in the navigation bar
Non active link style:
The css style for the inactive link in the navigation bar.
Active page mask:
The link mask where the {1} will be replaced with the link. Can be used to add special chars to enclose the current page number like [1]
Link separator:
The characters will be insert between the links to separate the links.
Next link:
Previous link:
First link:
Last link:
The text used in the links Next page, previous page, First page and Last page. If this text field is void the link will not be insert in the page so you can define if have this links or not in your navigation bar
Lock page:
If checked when the page start the Ajax request to get the new page recordset a div is open to lock all the page controls
Background color:
The background-color of the lock div
Background opacity:
The opacity in percentage of the lock div
Fade duration:
The lock div is open with a fade effect, this value define the milliseconds of the effect duration, set to 1 to disable the fade effect
Wait message:
The message is show in the middle of the lock div, can contains HTML code
Wait message from file:
Alternatively the wait message can be saved in a file, this is the path of the wait message file path. In the dwzAjaxPaging folder you can find a default wait message file.