From 0a12bef112fe6a1569531e40b7cc063b0f52f44c Mon Sep 17 00:00:00 2001 From: xue <> Date: Sat, 1 Apr 2006 17:31:28 +0000 Subject: Added THiddenField and THtmlArea demos. --- .../protected/pages/Controls/HiddenField.page | 5 ++- .../protected/pages/Controls/HtmlArea.page | 43 ++++++++++++++++++++++ .../pages/Controls/Samples/THtmlArea/Home.page | 42 +++++++++++++++++++++ .../pages/Controls/Samples/THtmlArea/Home.php | 21 +++++++++++ .../pages/Controls/Samples/TImageMap/Home.page | 4 +- .../protected/pages/Controls/Standard.page | 8 ++-- 6 files changed, 115 insertions(+), 8 deletions(-) create mode 100644 demos/quickstart/protected/pages/Controls/Samples/THtmlArea/Home.page create mode 100644 demos/quickstart/protected/pages/Controls/Samples/THtmlArea/Home.php (limited to 'demos/quickstart/protected/pages') diff --git a/demos/quickstart/protected/pages/Controls/HiddenField.page b/demos/quickstart/protected/pages/Controls/HiddenField.page index 8b04d928..c068d01b 100644 --- a/demos/quickstart/protected/pages/Controls/HiddenField.page +++ b/demos/quickstart/protected/pages/Controls/HiddenField.page @@ -4,7 +4,10 @@

-TBD +THiddenField represents a hidden field on a Web page. The value of the hidden field can be accessed via its Value property. +

+

+THiddenField raises an OnValueChanged event if its value is changed during postback.

\ No newline at end of file diff --git a/demos/quickstart/protected/pages/Controls/HtmlArea.page b/demos/quickstart/protected/pages/Controls/HtmlArea.page index 992f417e..9f96f404 100644 --- a/demos/quickstart/protected/pages/Controls/HtmlArea.page +++ b/demos/quickstart/protected/pages/Controls/HtmlArea.page @@ -3,5 +3,48 @@

THtmlArea

+

+THtmlArea displays a WYSIWYG text input field on a Web page to collect input in HTML format. The text displayed in the THtmlArea control is specified or determined by using the Text property. To adjust the size of the input region, set Width and Height properties instead of Columns and Rows because the latter has no meaning under this situation. To disable the WYSIWYG feature, set EnableVisualEdit to false. +

+ +

+THtmlArea provides the WYSIWYG feature by wrapping the functionalities provided by the TinyMCE project. +

+ +

+The default editor gives only the basic tool bar. To change or add additional tool bars, use the Options property to add additional editor options with each options on a new line. See TinyMCE website for a complete list of options. The following example displays a toolbar specific for HTML table manipulation, +

+ +<com:THtmlArea> + <prop:Options> + plugins : "table" + theme_advanced_buttons3 : "tablecontrols" + </prop:Options> +</com:THtmlArea> + + +

+The client-side visual editting capability is supported by Internet Explorer 5.0+ for Windows and Gecko-based browser. If the browser does not support the visual editting, a traditional textarea will be displayed. +

+ +
+
+                Windows XP        MacOS X 10.4
+----------------------------------------------------
+MSIE 6                  OK
+MSIE 5.5 SP2            OK
+MSIE 5.0                OK
+Mozilla 1.7.x           OK              OK
+Firefox 1.0.x           OK              OK
+Firefox 1.5b2           OK              OK
+Safari 2.0 (412)                        OK(1)
+Opera 9 Preview 1       OK(1)           OK(1)
+----------------------------------------------------
+(1) - Partialy working
+----------------------------------------------------
+
+
+ + \ No newline at end of file diff --git a/demos/quickstart/protected/pages/Controls/Samples/THtmlArea/Home.page b/demos/quickstart/protected/pages/Controls/Samples/THtmlArea/Home.page new file mode 100644 index 00000000..71343e64 --- /dev/null +++ b/demos/quickstart/protected/pages/Controls/Samples/THtmlArea/Home.page @@ -0,0 +1,42 @@ + + +

THtmlArea Samples

+ + + + + + + + + +
+THtmlArea with default settings: + + + +
+ +
+THtmlArea with customized size and table toolbar: + + + + plugins : "table" + theme_advanced_buttons3 : "tablecontrols" + + + +
+ +
+THtmlArea with visual editting disabled: + + +
+ +
+ +
+ +
\ No newline at end of file diff --git a/demos/quickstart/protected/pages/Controls/Samples/THtmlArea/Home.php b/demos/quickstart/protected/pages/Controls/Samples/THtmlArea/Home.php new file mode 100644 index 00000000..c56b5229 --- /dev/null +++ b/demos/quickstart/protected/pages/Controls/Samples/THtmlArea/Home.php @@ -0,0 +1,21 @@ +Result1->Text="You have entered: ".$this->HtmlArea1->Text; + } + + public function button2Clicked($sender,$param) + { + $this->Result2->Text="You have entered: ".$this->HtmlArea2->Text; + } + + public function button3Clicked($sender,$param) + { + $this->Result3->Text="You have entered: ".$this->HtmlArea3->Text; + } +} + +?> \ No newline at end of file diff --git a/demos/quickstart/protected/pages/Controls/Samples/TImageMap/Home.page b/demos/quickstart/protected/pages/Controls/Samples/TImageMap/Home.page index bf291456..a75c3dd2 100644 --- a/demos/quickstart/protected/pages/Controls/Samples/TImageMap/Home.page +++ b/demos/quickstart/protected/pages/Controls/Samples/TImageMap/Home.page @@ -25,9 +25,7 @@ TFileUpload represents a file upload field. It allows users to upload a file to server. -
  • * +
  • THead represents the <head> element on an HTML Web page. It is required by a PRADO page should it use themes.
  • -
  • * +
  • THiddenField represents a hidden input field on a Web page.
  • -
  • * +
  • THtmlArea represents a WYSIWYG text input field taking user input that are in HTML format.
  • @@ -75,7 +75,7 @@ TLiteral represents a static text without any HTML tag surrounding it on a Web page. -
  • +
  • * TMultiView represents a container for a group of TView controls, each of which is container for other controls. At any time, at most one TView is visible.
  • -- cgit v1.2.3