+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. +
+ ++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. +
+ ++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. +
+ ++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. +
+ ++Check box list with default settings: + | +
+ |
+
+Check box list's behavior upon callback: + | +
+ + |
+
+CheckBox list causing validation: + | +
+ |
+
+Callback dropdown list: + | +
+ |
+
+Adding an item on every callback: + | +
+ |
+
+Clearing / restoring the dropdownlist on callback: + | +
+ |
+
+Dropdown list is being validated: + | +
+ |
+
+Dropdown list causing validation: + | +
+ |
+
+Callback listbox: + | +
+ |
+
+Adding an item on every callback: + | +
+ |
+
+Clearing / restoring the listbox on callback: + | +
+ |
+
+Listbox is being validated: + | +
+ |
+
+Listbox causing validation: + | +
+ |
+
+Check box list with default settings: + | +
+ |
+
+Check box list's behavior upon callback: + | +
+ + |
+
+RadioButton list causing validation: + | +
+ |
+