From fbfbdcb233e94b7fed6f8ae209eb90d79aa33f7e Mon Sep 17 00:00:00 2001 From: wei <> Date: Fri, 30 Mar 2007 12:06:27 +0000 Subject: Add test case for #528 --- .../protected/pages/DActiveDropDownList2.php | 34 ++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 tests/FunctionalTests/tickets/protected/pages/DActiveDropDownList2.php (limited to 'tests/FunctionalTests/tickets/protected/pages/DActiveDropDownList2.php') diff --git a/tests/FunctionalTests/tickets/protected/pages/DActiveDropDownList2.php b/tests/FunctionalTests/tickets/protected/pages/DActiveDropDownList2.php new file mode 100644 index 00000000..81fdfea7 --- /dev/null +++ b/tests/FunctionalTests/tickets/protected/pages/DActiveDropDownList2.php @@ -0,0 +1,34 @@ +setViewState('Opcoes', $val); + } + + public function loadOptions() + { + $opcao = $this->getViewState('Opcoes'); + + switch ($opcao) { + case "turnos": + $this->DataTextField="descricao"; + $this->DataValueField="id_turno"; + $opts = array( + array('id_turno' => 'M', 'descricao' => 'Manhã'), + array('id_turno' => 'T', 'descricao' => 'Tarde'), + array('id_turno' => 'N', 'descricao' => 'Noite') + ); + break; + + default: + throw new TConfigurationException('Falta argumento OPCOES no DActiveDropDownList'); + break; + } + $this->setDataSource($opts); + $this->dataBind(); + } +} + +?> \ No newline at end of file -- cgit v1.2.3