Petr
|
| Posted: 10/22/2002, 12:08 PM |
|
When I used this
<!--BeginDListEvents-->
event_name
<!--EndDListEvents-->
How Can I set How many records I would like list (10 or 15)
Thanks for your answers
Petr
petr.weby@seznam.cz
|
|
|
 |
Petr
|
| Posted: 10/22/2002, 12:15 PM |
|
I mean something like this
<!--BeginDListEvents RecordsPerPage=10 -->
|
|
|
 |
Nicole
|
| Posted: 10/24/2002, 6:12 AM |
|
Petr,
This value is stored in Page Size property of the form. Change it in the form Before Show event. E.g.(PHP)
global $form_name;
$form_name->PageSize = 5;
|
|
|
 |
Petr
|
| Posted: 10/26/2002, 11:02 AM |
|
I know it but I need set up this in the html.
|
|
|
 |
Timothy
|
| Posted: 10/29/2002, 6:52 AM |
|
Petr,
Look at the html code. It is based on the html blocks surrounded with html comments. The comments are read while code is executed and parsed. Depending on parse parameter the html block will be displayed once (in case parse is set to false) and several times (if parse is set to true). You cannot set up the number of records in html, but in code only.
|
|
|
 |