Jerry
|
| Posted: 01/21/2003, 12:51 AM |
|
Is there any way to programmatically overwrite PageSize in the Grid form?
It looks like
GridName.PageSize = 20
in the Grid's Before Show event works fine, but it does not make any change on the pages navigation which still take the PageSize value from the form Records per Page property.
I'll appreciate any help in ASP.
|
|
|
 |
kar
|
| Posted: 01/21/2003, 9:06 PM |
|
Syntax
$value = $object->PageSize;
$object->PageSize = $value;
|
|
|
 |
Jerry
|
| Posted: 01/22/2003, 1:23 AM |
|
Thanks, but I am not familiar with PHP.
Do you know how to write it in ASP?
|
|
|
 |
|