From 33b2284955a8f0015922d4c69c5082141b584f27 Mon Sep 17 00:00:00 2001 From: wei <> Date: Tue, 5 Dec 2006 23:37:07 +0000 Subject: load the inlineeditor textbox in client side onload. --- .../active-controls/protected/pages/GerTurno2.page | 16 +++++ .../active-controls/protected/pages/GerTurno2.php | 53 ++++++++++++++ .../active-controls/protected/pages/Home.php | 11 +++ .../protected/pages/InPlaceWithValidator.page | 78 +++++++++++++++++++++ .../protected/pages/InPlaceWithValidator.php | 13 ++++ .../active-controls/protected/pages/Master1.php | 7 ++ .../active-controls/protected/pages/Master1.tpl | 14 ++++ .../protected/pages/MasterTest1.page | 14 ++++ .../protected/pages/NullStateTest.page | 10 +++ .../protected/pages/NullStateTest.php | 11 +++ tests/simple_unit/SqlMap/common.php | 2 +- tests/simple_unit/SqlMap/sqlite/backup.db | Bin 32768 -> 24576 bytes tests/simple_unit/SqlMap/sqlite/tests.db | Bin 32768 -> 24576 bytes 13 files changed, 228 insertions(+), 1 deletion(-) create mode 100644 tests/FunctionalTests/active-controls/protected/pages/GerTurno2.page create mode 100644 tests/FunctionalTests/active-controls/protected/pages/GerTurno2.php create mode 100644 tests/FunctionalTests/active-controls/protected/pages/Home.php create mode 100644 tests/FunctionalTests/active-controls/protected/pages/InPlaceWithValidator.page create mode 100644 tests/FunctionalTests/active-controls/protected/pages/InPlaceWithValidator.php create mode 100644 tests/FunctionalTests/active-controls/protected/pages/Master1.php create mode 100644 tests/FunctionalTests/active-controls/protected/pages/Master1.tpl create mode 100644 tests/FunctionalTests/active-controls/protected/pages/MasterTest1.page create mode 100644 tests/FunctionalTests/active-controls/protected/pages/NullStateTest.page create mode 100644 tests/FunctionalTests/active-controls/protected/pages/NullStateTest.php (limited to 'tests') diff --git a/tests/FunctionalTests/active-controls/protected/pages/GerTurno2.page b/tests/FunctionalTests/active-controls/protected/pages/GerTurno2.page new file mode 100644 index 00000000..f4bf644c --- /dev/null +++ b/tests/FunctionalTests/active-controls/protected/pages/GerTurno2.page @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/tests/FunctionalTests/active-controls/protected/pages/GerTurno2.php b/tests/FunctionalTests/active-controls/protected/pages/GerTurno2.php new file mode 100644 index 00000000..d31c10f6 --- /dev/null +++ b/tests/FunctionalTests/active-controls/protected/pages/GerTurno2.php @@ -0,0 +1,53 @@ +loadTurnoOptions(); + + if (!$this->IsPostBack) { + $this->ativaModoEdicao(); + } + } + + + protected function loadTurnoOptions() + { + $this->DDropTurno->DataTextField="descricao"; + $this->DDropTurno->DataValueField="id"; + $this->_turnos = array( + array('id' => 1, 'codigo'=>'test 1', 'descricao' => 'hello 1'), + array('id' => 2, 'codigo'=>'test 2', 'descricao' => 'hello 2') + ); + $this->DDropTurno->setDataSource($this->_turnos); + $this->DDropTurno->dataBind(); + } + + + protected function ativaModoEdicao() { + $this->loadDadosTurno($this->DDropTurno->getSelectedValue()); + } + + + protected function loadDadosTurno($id) { + foreach ($this->_turnos as $key => $tur) { + if ($tur['id'] == $id) { + $this->Codigo->setText($tur['codigo']); + $this->Descricao->setText($tur['descricao']); + } + } + } + + + public function trocaTurno($sender,$param) { + $this->loadDadosTurno($sender->getSelectedValue()); + } + +} + +?> \ No newline at end of file diff --git a/tests/FunctionalTests/active-controls/protected/pages/Home.php b/tests/FunctionalTests/active-controls/protected/pages/Home.php new file mode 100644 index 00000000..22b6528a --- /dev/null +++ b/tests/FunctionalTests/active-controls/protected/pages/Home.php @@ -0,0 +1,11 @@ +lblTest->Text = "Testing"; + } +} + +?> \ No newline at end of file diff --git a/tests/FunctionalTests/active-controls/protected/pages/InPlaceWithValidator.page b/tests/FunctionalTests/active-controls/protected/pages/InPlaceWithValidator.page new file mode 100644 index 00000000..ba3a35db --- /dev/null +++ b/tests/FunctionalTests/active-controls/protected/pages/InPlaceWithValidator.page @@ -0,0 +1,78 @@ + + + + + + +
+ + +
+ + +
+ + +
\ No newline at end of file diff --git a/tests/FunctionalTests/active-controls/protected/pages/InPlaceWithValidator.php b/tests/FunctionalTests/active-controls/protected/pages/InPlaceWithValidator.php new file mode 100644 index 00000000..e69ffdf2 --- /dev/null +++ b/tests/FunctionalTests/active-controls/protected/pages/InPlaceWithValidator.php @@ -0,0 +1,13 @@ +status->Text = "Status: ". $this->Firstname->Text.".".$this->Lastname->Text; + + } + +} + +?> \ No newline at end of file diff --git a/tests/FunctionalTests/active-controls/protected/pages/Master1.php b/tests/FunctionalTests/active-controls/protected/pages/Master1.php new file mode 100644 index 00000000..173a59f0 --- /dev/null +++ b/tests/FunctionalTests/active-controls/protected/pages/Master1.php @@ -0,0 +1,7 @@ + \ No newline at end of file diff --git a/tests/FunctionalTests/active-controls/protected/pages/Master1.tpl b/tests/FunctionalTests/active-controls/protected/pages/Master1.tpl new file mode 100644 index 00000000..5e63d57d --- /dev/null +++ b/tests/FunctionalTests/active-controls/protected/pages/Master1.tpl @@ -0,0 +1,14 @@ +... + + + + + + + + + + + + +... \ No newline at end of file diff --git a/tests/FunctionalTests/active-controls/protected/pages/MasterTest1.page b/tests/FunctionalTests/active-controls/protected/pages/MasterTest1.page new file mode 100644 index 00000000..7f6863cf --- /dev/null +++ b/tests/FunctionalTests/active-controls/protected/pages/MasterTest1.page @@ -0,0 +1,14 @@ +<%@ MasterClass="Application.pages.Master1" %> + +men + + + +
+ [color=red][/color] +
+
+ + +ad + \ No newline at end of file diff --git a/tests/FunctionalTests/active-controls/protected/pages/NullStateTest.page b/tests/FunctionalTests/active-controls/protected/pages/NullStateTest.page new file mode 100644 index 00000000..2ce98f5b --- /dev/null +++ b/tests/FunctionalTests/active-controls/protected/pages/NullStateTest.page @@ -0,0 +1,10 @@ + + +

Null State Test

+ + + + + + +
\ No newline at end of file diff --git a/tests/FunctionalTests/active-controls/protected/pages/NullStateTest.php b/tests/FunctionalTests/active-controls/protected/pages/NullStateTest.php new file mode 100644 index 00000000..0abd8eb5 --- /dev/null +++ b/tests/FunctionalTests/active-controls/protected/pages/NullStateTest.php @@ -0,0 +1,11 @@ +lblTest->Text = "Testing"; + } +} + +?> \ No newline at end of file diff --git a/tests/simple_unit/SqlMap/common.php b/tests/simple_unit/SqlMap/common.php index 2856f66e..57685c31 100644 --- a/tests/simple_unit/SqlMap/common.php +++ b/tests/simple_unit/SqlMap/common.php @@ -76,7 +76,7 @@ class SQLiteBaseTestConfig extends BaseTestConfig $this->targetFile = realpath(SQLMAP_TESTS.'/sqlite/tests.db'); $this->baseFile = realpath(SQLMAP_TESTS.'/sqlite/backup.db'); $file = realpath($this->targetFile); - $this->_connection = new TDbConnection("sqlite2:{$file}"); + $this->_connection = new TDbConnection("sqlite:{$file}"); } public function getScriptRunner() diff --git a/tests/simple_unit/SqlMap/sqlite/backup.db b/tests/simple_unit/SqlMap/sqlite/backup.db index fa66b2cc..4f5a353d 100644 Binary files a/tests/simple_unit/SqlMap/sqlite/backup.db and b/tests/simple_unit/SqlMap/sqlite/backup.db differ diff --git a/tests/simple_unit/SqlMap/sqlite/tests.db b/tests/simple_unit/SqlMap/sqlite/tests.db index fa66b2cc..290c8899 100644 Binary files a/tests/simple_unit/SqlMap/sqlite/tests.db and b/tests/simple_unit/SqlMap/sqlite/tests.db differ -- cgit v1.2.3