From ffc9318788952a879815cfa01a8b17b7ddae89b1 Mon Sep 17 00:00:00 2001 From: "ctrlaltca@gmail.com" <> Date: Thu, 2 Jun 2011 11:16:04 +0000 Subject: added documentation and examples for TActiveCheckBoxList, TActiveDropDownList, TActiveListBox, TActiveRadioButtonList classes --- .../pages/ActiveControls/ActiveCheckBoxList.page | 32 ++++++ .../pages/ActiveControls/ActiveDropDownList.page | 32 ++++++ .../pages/ActiveControls/ActiveListBox.page | 28 ++++++ .../ActiveControls/ActiveRadioButtonList.page | 32 ++++++ .../protected/pages/ActiveControls/Home.page | 8 +- .../Samples/TActiveCheckBoxList/Home.page | 66 +++++++++++++ .../Samples/TActiveCheckBoxList/Home.php | 26 +++++ .../Samples/TActiveDropDownList/Home.page | 108 +++++++++++++++++++++ .../Samples/TActiveDropDownList/Home.php | 60 ++++++++++++ .../Samples/TActiveListBox/Home.page | 108 +++++++++++++++++++++ .../ActiveControls/Samples/TActiveListBox/Home.php | 60 ++++++++++++ .../Samples/TActiveRadioButtonList/Home.page | 66 +++++++++++++ .../Samples/TActiveRadioButtonList/Home.php | 26 +++++ 13 files changed, 648 insertions(+), 4 deletions(-) create mode 100644 demos/quickstart/protected/pages/ActiveControls/ActiveCheckBoxList.page create mode 100644 demos/quickstart/protected/pages/ActiveControls/ActiveDropDownList.page create mode 100644 demos/quickstart/protected/pages/ActiveControls/ActiveListBox.page create mode 100644 demos/quickstart/protected/pages/ActiveControls/ActiveRadioButtonList.page create mode 100644 demos/quickstart/protected/pages/ActiveControls/Samples/TActiveCheckBoxList/Home.page create mode 100644 demos/quickstart/protected/pages/ActiveControls/Samples/TActiveCheckBoxList/Home.php create mode 100644 demos/quickstart/protected/pages/ActiveControls/Samples/TActiveDropDownList/Home.page create mode 100644 demos/quickstart/protected/pages/ActiveControls/Samples/TActiveDropDownList/Home.php create mode 100644 demos/quickstart/protected/pages/ActiveControls/Samples/TActiveListBox/Home.page create mode 100644 demos/quickstart/protected/pages/ActiveControls/Samples/TActiveListBox/Home.php create mode 100644 demos/quickstart/protected/pages/ActiveControls/Samples/TActiveRadioButtonList/Home.page create mode 100644 demos/quickstart/protected/pages/ActiveControls/Samples/TActiveRadioButtonList/Home.php (limited to 'demos') diff --git a/demos/quickstart/protected/pages/ActiveControls/ActiveCheckBoxList.page b/demos/quickstart/protected/pages/ActiveControls/ActiveCheckBoxList.page new file mode 100644 index 00000000..2560ece5 --- /dev/null +++ b/demos/quickstart/protected/pages/ActiveControls/ActiveCheckBoxList.page @@ -0,0 +1,32 @@ + + +

TActiveCheckBoxList

+ + +

+TActiveCheckBoxList is the active counterpart to the original TCheckBoxList control. +

+ +

+The AutoPostBack property is set to true by default. +Thus, when a checkbox is clicked a OnCallback event is +raised after OnSelectedIndexChanged event. +

+ +

+With ActiveControl.EnabledUpdate +set to true (default is true), changes to the selection will be updated +on the client side. +

+ +

+List items can not be changed dynamically during a callback request. +

+ +

+Please refer to the original documentation of TCheckBoxList for usage. +

+ + + +
$Id$
\ No newline at end of file diff --git a/demos/quickstart/protected/pages/ActiveControls/ActiveDropDownList.page b/demos/quickstart/protected/pages/ActiveControls/ActiveDropDownList.page new file mode 100644 index 00000000..4400c552 --- /dev/null +++ b/demos/quickstart/protected/pages/ActiveControls/ActiveDropDownList.page @@ -0,0 +1,32 @@ + + +

TActiveDropDownList

+ + +

+TActiveDropDownList is the active counterpart to the original TDropDownList control. +

+ +

+The AutoPostBack property is set to true by default. +Thus, when the drop down list selection is changed the OnCallback event is +raised after OnSelectedIndexChanged event. +

+ +

+With ActiveControl.EnabledUpdate +set to true (default is true), changes to the selection, after OnLoad event has +been raised, will be updated on the client side. +

+ +

+List items can be changed dynamically during a callback request. +

+ +

+Please refer to the original documentation of TDropDownList for usage. +

+ + + +
$Id$
\ No newline at end of file diff --git a/demos/quickstart/protected/pages/ActiveControls/ActiveListBox.page b/demos/quickstart/protected/pages/ActiveControls/ActiveListBox.page new file mode 100644 index 00000000..802c9fb1 --- /dev/null +++ b/demos/quickstart/protected/pages/ActiveControls/ActiveListBox.page @@ -0,0 +1,28 @@ + + +

TActiveListBox

+ + +

+TActiveListBox is the active counterpart to the original TListBox control. +

+ +

+The AutoPostBack property is set to true by default. +Thus, when a list item is clicked a OnCallback event is +raised after OnSelectedIndexChanged event. +

+ +

+With ActiveControl.EnabledUpdate +set to true (default is true), changes to the selection will be updated +on the client side. +

+ +

+Please refer to the original documentation of TListBox for usage. +

+ + + +
$Id$
\ No newline at end of file diff --git a/demos/quickstart/protected/pages/ActiveControls/ActiveRadioButtonList.page b/demos/quickstart/protected/pages/ActiveControls/ActiveRadioButtonList.page new file mode 100644 index 00000000..6095a9d3 --- /dev/null +++ b/demos/quickstart/protected/pages/ActiveControls/ActiveRadioButtonList.page @@ -0,0 +1,32 @@ + + +

TActiveRadioButtonList

+ + +

+TActiveRadioButtonList is the active counterpart to the original TRadioButtonList control. +

+ +

+The AutoPostBack property is set to true by default. +Thus, when a radio button is clicked a OnCallback event is +raised after OnSelectedIndexChanged event. +

+ +

+With ActiveControl.EnabledUpdate +set to true (default is true), changes to the selection will be updated +on the client side. +

+ +

+List items can not be changed dynamically during a callback request. +

+ +

+Please refer to the original documentation of TRadioButtonList for usage. +

+ + + +
$Id$
\ No newline at end of file diff --git a/demos/quickstart/protected/pages/ActiveControls/Home.page b/demos/quickstart/protected/pages/ActiveControls/Home.page index 798bc267..a658aa16 100644 --- a/demos/quickstart/protected/pages/ActiveControls/Home.page +++ b/demos/quickstart/protected/pages/ActiveControls/Home.page @@ -107,26 +107,26 @@ TActiveButton control. See also the later part of the Active List Controls