This behavior helps you quickly find the records that have the selected field value that you choose with a single click. This is usefull to filter and display the records by category with a navigation bar where you have a link for each category in your recordset and the link will display the category label.
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
Field:
The recordset column that stores the value label you want displayed in the navigation bar links.
Link style:
The css style for the links in the navigation bar
Current link style:
The css style for the current label 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 letter like [1]
Link separator:
The characters will be insert between the links to separate the links.
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.