diff options
author | xue <> | 2006-02-07 02:31:27 +0000 |
---|---|---|
committer | xue <> | 2006-02-07 02:31:27 +0000 |
commit | a2bb6b40fa09b9d25a610ea71854bfd06ee538cf (patch) | |
tree | 638e8697c94945a436d51d681b15f40802f0dd16 /demos | |
parent | 0d56725dd699041530e92026868193e87b81b837 (diff) |
Fixed a bug in generating URLs with double slashes.
Diffstat (limited to 'demos')
-rw-r--r-- | demos/quickstart/protected/pages/Controls/Samples/TDataGrid/Sample5.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/demos/quickstart/protected/pages/Controls/Samples/TDataGrid/Sample5.php b/demos/quickstart/protected/pages/Controls/Samples/TDataGrid/Sample5.php index 6d6d967c..30b78765 100644 --- a/demos/quickstart/protected/pages/Controls/Samples/TDataGrid/Sample5.php +++ b/demos/quickstart/protected/pages/Controls/Samples/TDataGrid/Sample5.php @@ -45,6 +45,8 @@ class Sample5 extends Sample1 public function useNumericPager($sender,$param)
{
$this->DataGrid->PagerStyle->Mode='Numeric';
+ $this->DataGrid->PagerStyle->NextPageText=$this->NextPageText->Text;
+ $this->DataGrid->PagerStyle->PrevPageText=$this->PrevPageText->Text;
$this->DataGrid->PagerStyle->PageButtonCount=$this->PageButtonCount->Text;
$this->DataGrid->DataSource=$this->Data;
$this->DataGrid->dataBind();
|