diff options
author | xue <> | 2006-01-26 03:48:55 +0000 |
---|---|---|
committer | xue <> | 2006-01-26 03:48:55 +0000 |
commit | 5081f7a12bb78b2efabf423fdf940927f7b7c908 (patch) | |
tree | f4feac4dc01ef234713a3f0995e625826014ed0f /demos | |
parent | 605d41ad0dd3d90f0c5ba7c36c08c001341017a1 (diff) |
Added TListBox FT.
Diffstat (limited to 'demos')
-rw-r--r-- | demos/quickstart/protected/pages/Controls/Samples/TListBox/Home.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/demos/quickstart/protected/pages/Controls/Samples/TListBox/Home.php b/demos/quickstart/protected/pages/Controls/Samples/TListBox/Home.php index cd9d7c13..a570d38b 100644 --- a/demos/quickstart/protected/pages/Controls/Samples/TListBox/Home.php +++ b/demos/quickstart/protected/pages/Controls/Samples/TListBox/Home.php @@ -47,7 +47,7 @@ class Home extends TPage foreach($indices as $index)
{
$item=$input->Items[$index];
- $result.="(Index: $index, Value: $item->Value, Text: $item->Text)\n";
+ $result.="(Index: $index, Value: $item->Value, Text: $item->Text)";
}
if($result==='')
$output->Text='Your selection is empty.';
|