diff options
| author | wei <> | 2006-09-16 03:43:02 +0000 | 
|---|---|---|
| committer | wei <> | 2006-09-16 03:43:02 +0000 | 
| commit | 2d8fc0f1818aa896bebedf8cbeedffb17d048600 (patch) | |
| tree | 2ef6ea939d5f018598ec2983086354000750fb70 /tests/FunctionalTests/active-controls | |
| parent | d148330f1fe3cb6116a69e56ecd44c37bfb2a44e (diff) | |
Fixed #340
Diffstat (limited to 'tests/FunctionalTests/active-controls')
| -rw-r--r-- | tests/FunctionalTests/active-controls/protected/pages/ActiveControlWithTinyMce.page | 11 | ||||
| -rw-r--r-- | tests/FunctionalTests/active-controls/protected/pages/ActiveControlWithTinyMce.php | 11 | 
2 files changed, 22 insertions, 0 deletions
diff --git a/tests/FunctionalTests/active-controls/protected/pages/ActiveControlWithTinyMce.page b/tests/FunctionalTests/active-controls/protected/pages/ActiveControlWithTinyMce.page new file mode 100644 index 00000000..aa3be754 --- /dev/null +++ b/tests/FunctionalTests/active-controls/protected/pages/ActiveControlWithTinyMce.page @@ -0,0 +1,11 @@ +<com:TForm>
 +<h1>Active Control with TinyMCE</h1>
 +
 +<com:THtmlArea ID="text1" />
 +
 +<com:TActiveButton ID="button1" Text="Save" OnCallback="button1_callback" />
 +
 +<com:TActiveLabel ID="label1" />
 +
 +<com:TJavascriptLogger />
 +</com:TForm>
\ No newline at end of file diff --git a/tests/FunctionalTests/active-controls/protected/pages/ActiveControlWithTinyMce.php b/tests/FunctionalTests/active-controls/protected/pages/ActiveControlWithTinyMce.php new file mode 100644 index 00000000..a154e0dd --- /dev/null +++ b/tests/FunctionalTests/active-controls/protected/pages/ActiveControlWithTinyMce.php @@ -0,0 +1,11 @@ +<?php
 +
 +class ActiveControlWithTinyMce extends TPage
 +{
 +	function button1_callback($sender, $param)
 +	{
 +		$this->label1->Text = $this->text1->SafeText;
 +	}
 +}
 +
 +?>
\ No newline at end of file  | 
