summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorxue <>2006-03-19 16:24:35 +0000
committerxue <>2006-03-19 16:24:35 +0000
commita31c95cfdb23a9dd068759249389c4a9c0734511 (patch)
treeea12c62dd48e389b05a257552f1b1d03fa29cca1
parent64310ee432c1eb9e50559581a7570aba534c7e20 (diff)
Update datagrid samples in respect to the new change to TDataGrid.
-rw-r--r--demos/quickstart/protected/pages/Controls/Samples/TDataGrid/Sample5.page6
-rw-r--r--demos/quickstart/protected/pages/Controls/Samples/TDataGrid/Sample5.php9
-rw-r--r--demos/quickstart/protected/pages/Controls/Samples/TDataGrid/Sample6.page3
-rw-r--r--framework/Web/UI/WebControls/TPanel.php2
4 files changed, 9 insertions, 11 deletions
diff --git a/demos/quickstart/protected/pages/Controls/Samples/TDataGrid/Sample5.page b/demos/quickstart/protected/pages/Controls/Samples/TDataGrid/Sample5.page
index e4f2f052..87a34b04 100644
--- a/demos/quickstart/protected/pages/Controls/Samples/TDataGrid/Sample5.page
+++ b/demos/quickstart/protected/pages/Controls/Samples/TDataGrid/Sample5.page
@@ -3,13 +3,14 @@
<h1>TDataGrid Sample 5</h1>
<h2>Paging</h2>
+<div style="width:500px">
<com:TDataGrid
ID="DataGrid"
AllowPaging="true"
PageSize="5"
PagerStyle.Mode="Numeric"
PagerStyle.HorizontalAlign="Right"
- Width="500px"
+ Width="100%"
CellPadding="2"
HeaderStyle.BackColor="black"
HeaderStyle.ForeColor="white"
@@ -17,8 +18,9 @@
ItemStyle.Font.Italic="true"
AlternatingItemStyle.BackColor="#E6ECFF"
OnPageIndexChanged="changePage"
- OnItemCreated="itemCreated"
+ OnPagerCreated="pagerCreated"
/>
+</div>
<com:TPanel GroupingText="Pager Visibility" Width="300px">
diff --git a/demos/quickstart/protected/pages/Controls/Samples/TDataGrid/Sample5.php b/demos/quickstart/protected/pages/Controls/Samples/TDataGrid/Sample5.php
index 660c40af..bdca2ca8 100644
--- a/demos/quickstart/protected/pages/Controls/Samples/TDataGrid/Sample5.php
+++ b/demos/quickstart/protected/pages/Controls/Samples/TDataGrid/Sample5.php
@@ -11,14 +11,9 @@ class Sample5 extends Sample1
$this->DataGrid->dataBind();
}
- public function itemCreated($sender,$param)
+ public function pagerCreated($sender,$param)
{
- $item=$param->Item;
- if($item->ItemType==='Pager')
- {
- // prepend 'Page: ' to the pager
- $item->Cells[0]->Controls->insertAt(0,'Page: ');
- }
+ $param->Pager->Controls->insertAt(0,'Page: ');
}
public function changePagerPosition($sender,$param)
diff --git a/demos/quickstart/protected/pages/Controls/Samples/TDataGrid/Sample6.page b/demos/quickstart/protected/pages/Controls/Samples/TDataGrid/Sample6.page
index c8a8c9a2..d2277bc5 100644
--- a/demos/quickstart/protected/pages/Controls/Samples/TDataGrid/Sample6.page
+++ b/demos/quickstart/protected/pages/Controls/Samples/TDataGrid/Sample6.page
@@ -3,6 +3,7 @@
<h1>TDataGrid Sample 6</h1>
<h2>Custom Paging</h2>
+<div style="width:500px">
<com:TDataGrid
ID="DataGrid"
AllowPaging="true"
@@ -11,7 +12,6 @@
PageSize="5"
PagerStyle.Mode="Numeric"
PagerStyle.HorizontalAlign="Right"
- Width="500px"
CellPadding="2"
HeaderStyle.BackColor="black"
HeaderStyle.ForeColor="white"
@@ -20,5 +20,6 @@
AlternatingItemStyle.BackColor="#E6ECFF"
OnPageIndexChanged="changePage"
/>
+</div>
</com:TContent> \ No newline at end of file
diff --git a/framework/Web/UI/WebControls/TPanel.php b/framework/Web/UI/WebControls/TPanel.php
index 4e010ed2..5f99edf5 100644
--- a/framework/Web/UI/WebControls/TPanel.php
+++ b/framework/Web/UI/WebControls/TPanel.php
@@ -429,7 +429,7 @@ class TPanelStyle extends TStyle
public function mergeWith($style)
{
parent::mergeWith($style);
- if($style instanceof TTableStyle)
+ if($style instanceof TPanelStyle)
{
if($this->_backImageUrl===null && $style->_backImageUrl!==null)
$this->_backImageUrl=$style->_backImageUrl;