blob: f50d17f1b6c5e7f1b9031115b914063f420b3e84 (
plain)
1
2
3
4
5
6
7
8
9
|
<?php
class Ticket745 extends TPage
{
public function wizardCompleted($sender,$param)
{
$this->Result->Text="Your favorite color is: " . $this->DropDownList1->SelectedValue;
}
}
|