diff options
Diffstat (limited to 'demos/quickstart/protected')
-rw-r--r-- | demos/quickstart/protected/pages/Controls/Samples/TDropDownList/Home.page | 2 | ||||
-rw-r--r-- | demos/quickstart/protected/pages/Controls/Samples/TDropDownList/Home.php | 2 |
2 files changed, 1 insertions, 3 deletions
diff --git a/demos/quickstart/protected/pages/Controls/Samples/TDropDownList/Home.page b/demos/quickstart/protected/pages/Controls/Samples/TDropDownList/Home.page index ed3c07a3..90dc4a3c 100644 --- a/demos/quickstart/protected/pages/Controls/Samples/TDropDownList/Home.page +++ b/demos/quickstart/protected/pages/Controls/Samples/TDropDownList/Home.page @@ -92,8 +92,6 @@ Dropdown list's behavior upon postback: <h2>DropDown Lists with DataBinding</h2>
-<i>Use Ctrl + Mouse Click to change selection</i>
-<br/>
<table class="sampletable">
diff --git a/demos/quickstart/protected/pages/Controls/Samples/TDropDownList/Home.php b/demos/quickstart/protected/pages/Controls/Samples/TDropDownList/Home.php index c220d697..133a797a 100644 --- a/demos/quickstart/protected/pages/Controls/Samples/TDropDownList/Home.php +++ b/demos/quickstart/protected/pages/Controls/Samples/TDropDownList/Home.php @@ -32,7 +32,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.';
|