From b282fa042e344a3739d5b48ac393e50c082227e4 Mon Sep 17 00:00:00 2001 From: "ctrlaltca@gmail.com" <> Date: Wed, 25 May 2011 08:08:06 +0000 Subject: fixed last blocking error related to the build script. it completes successfully now --- .../Web/UI/ActiveControls/TActiveDataGrid.php | 52 +++++++++++++++++++--- .../Web/UI/ActiveControls/TActiveDataList.php | 10 +++++ .../Web/UI/ActiveControls/TActiveRepeater.php | 8 ++++ framework/Web/UI/ActiveControls/TDraggable.php | 23 +++++++++- framework/Web/UI/ActiveControls/TDropContainer.php | 2 +- .../UI/ActiveControls/TValueTriggeredCallback.php | 4 +- 6 files changed, 90 insertions(+), 9 deletions(-) (limited to 'framework/Web/UI/ActiveControls') diff --git a/framework/Web/UI/ActiveControls/TActiveDataGrid.php b/framework/Web/UI/ActiveControls/TActiveDataGrid.php index 156a55a0..358bd414 100644 --- a/framework/Web/UI/ActiveControls/TActiveDataGrid.php +++ b/framework/Web/UI/ActiveControls/TActiveDataGrid.php @@ -180,7 +180,7 @@ class TActiveDataGrid extends TDataGrid implements IActiveControl, ISurroundable * * @author LANDWEHR Computer und Software GmbH * @package System.Web.UI.ActiveControls - * @since 3.1.4 + * @since 3.2 */ class TActiveBoundColumn extends TBoundColumn { protected function initializeHeaderCell($cell,$columnIndex) { @@ -259,7 +259,7 @@ class TActiveBoundColumn extends TBoundColumn { * * @author LANDWEHR Computer und Software GmbH * @package System.Web.UI.ActiveControls - * @since 3.1.4 + * @since 3.2 */ class TActiveEditCommandColumn extends TEditCommandColumn { protected function createButton($commandName,$text,$causesValidation,$validationGroup) { @@ -301,7 +301,7 @@ class TActiveEditCommandColumn extends TEditCommandColumn { * * @author LANDWEHR Computer und Software GmbH * @package System.Web.UI.ActiveControls - * @since 3.1.4 + * @since 3.2 */ class TActiveButtonColumn extends TButtonColumn { public function initializeCell($cell,$columnIndex,$itemType) { @@ -348,7 +348,7 @@ class TActiveButtonColumn extends TButtonColumn { * * @author LANDWEHR Computer und Software GmbH * @package System.Web.UI.ActiveControls - * @since 3.1.4 + * @since 3.2 */ class TActiveTemplateColumn extends TTemplateColumn { protected function initializeHeaderCell($cell,$columnIndex) { @@ -405,6 +405,20 @@ class TActiveTemplateColumn extends TTemplateColumn { } } +/** + * TActiveHyperLinkColumn class + * + * TActiveHyperLinkColumn contains a hyperlink for each item in the column. + * + * This is the active counterpart to the {@link THyperLinkColumn} control. For that purpose, + * if sorting is allowed, the header links/buttons are replaced by active controls. + * + * Please refer to the original documentation of the {@link THyperLinkColumn} for usage. + * + * @author LANDWEHR Computer und Software GmbH + * @package System.Web.UI.ActiveControls + * @since 3.2 + */ class TActiveHyperLinkColumn extends THyperLinkColumn { @@ -471,9 +485,23 @@ class TActiveHyperLinkColumn extends THyperLinkColumn } } +/** + * TActiveCheckBoxColumn class + * + * TActiveCheckBoxColumn represents a checkbox column that is bound to a field in a data source. + * + * This is the active counterpart to the {@link TCheckBoxColumn} control. For that purpose, + * if sorting is allowed, the header links/buttons are replaced by active controls. + * + * Please refer to the original documentation of the {@link TCheckBoxColumn} for usage. + * + * @author LANDWEHR Computer und Software GmbH + * @package System.Web.UI.ActiveControls + * @since 3.2 + */ class TActiveCheckBoxColumn extends TCheckBoxColumn { - /** + /** * Initializes the specified cell to its initial values. * This method overrides the parent implementation. * It creates a checkbox inside the cell. @@ -563,6 +591,20 @@ class TActiveCheckBoxColumn extends TCheckBoxColumn } } +/** + * TActiveDropDownListColumn class + * + * TActiveDropDownListColumn represents a column that is bound to a field in a data source. + * + * This is the active counterpart to the {@link TDropDownListColumn} control. For that purpose, + * if sorting is allowed, the header links/buttons are replaced by active controls. + * + * Please refer to the original documentation of the {@link TDropDownListColumn} for usage. + * + * @author LANDWEHR Computer und Software GmbH + * @package System.Web.UI.ActiveControls + * @since 3.2 + */ class TActiveDropDownListColumn extends TDropDownListColumn { protected function initializeHeaderCell($cell,$columnIndex) diff --git a/framework/Web/UI/ActiveControls/TActiveDataList.php b/framework/Web/UI/ActiveControls/TActiveDataList.php index f0b0e9cb..dbf70067 100644 --- a/framework/Web/UI/ActiveControls/TActiveDataList.php +++ b/framework/Web/UI/ActiveControls/TActiveDataList.php @@ -1,4 +1,14 @@ + * @copyright Copyright © 2008, PradoSoft + * @license http://www.pradosoft.com/license + * @package System.Web.UI.ActiveControls + * @version $Id: TActiveDataList.php 2706 2009-09-24 14:42:30Z rojaro $ + */ + /** * TActiveDataList class * diff --git a/framework/Web/UI/ActiveControls/TActiveRepeater.php b/framework/Web/UI/ActiveControls/TActiveRepeater.php index 941b6322..ccfda4aa 100644 --- a/framework/Web/UI/ActiveControls/TActiveRepeater.php +++ b/framework/Web/UI/ActiveControls/TActiveRepeater.php @@ -1,4 +1,12 @@ + * @package System.Web.UI.ActiveControls + * @since 3.2 + * @version $Id: TActiveRepeater.php 2707 2009-09-29 10:33:30Z Christophe.Boulain $ + */ /** * TActiveRepeater class diff --git a/framework/Web/UI/ActiveControls/TDraggable.php b/framework/Web/UI/ActiveControls/TDraggable.php index 84db0c82..773babca 100755 --- a/framework/Web/UI/ActiveControls/TDraggable.php +++ b/framework/Web/UI/ActiveControls/TDraggable.php @@ -7,7 +7,6 @@ * @license http://www.pradosoft.com/license * @package System.Web.UI.ActiveControls * @version $Id$ - * @package System.Web.UI.ActiveControls */ /** @@ -28,7 +27,6 @@ * @license http://www.pradosoft.com/license * @package System.Web.UI.ActiveControls * @version $Id$ - * @package System.Web.UI.ActiveControls */ class TDraggable extends TPanel { @@ -199,6 +197,13 @@ class TDraggable extends TPanel } +/** + * @author Christophe BOULAIN (Christophe.Boulain@gmail.com) + * @copyright Copyright © 2008, PradoSoft + * @license http://www.pradosoft.com/license + * @package System.Web.UI.ActiveControls + * @version $Id$ + */ class TDraggableConstraint extends TEnumerable { const None='None'; @@ -206,6 +211,13 @@ class TDraggableConstraint extends TEnumerable const Vertical='Vertical'; } +/** + * @author Christophe BOULAIN (Christophe.Boulain@gmail.com) + * @copyright Copyright © 2008, PradoSoft + * @license http://www.pradosoft.com/license + * @package System.Web.UI.ActiveControls + * @version $Id$ + */ class TDraggableGhostingOptions extends TEnumerable { const None='None'; @@ -213,6 +225,13 @@ class TDraggableGhostingOptions extends TEnumerable const SuperGhosting='SuperGhosting'; } +/** + * @author Christophe BOULAIN (Christophe.Boulain@gmail.com) + * @copyright Copyright © 2008, PradoSoft + * @license http://www.pradosoft.com/license + * @package System.Web.UI.ActiveControls + * @version $Id$ + */ class TDraggableRevertOptions extends TEnumerable { const None='None'; diff --git a/framework/Web/UI/ActiveControls/TDropContainer.php b/framework/Web/UI/ActiveControls/TDropContainer.php index b9981033..5271cde6 100755 --- a/framework/Web/UI/ActiveControls/TDropContainer.php +++ b/framework/Web/UI/ActiveControls/TDropContainer.php @@ -31,7 +31,7 @@ Prado::using('System.Web.UI.ActiveControls.TActivePanel'); * * Events: * - * {@link OnDrop OnDrop} : raised when a TDraggable control is dropped. The dropped control id is encapsulated in the event parameter, + * {@link OnDrop OnDrop} : raised when a TDraggable control is dropped. The dropped control id is encapsulated in the event parameter, * as well as mouse coordinates and key modifiers status * * diff --git a/framework/Web/UI/ActiveControls/TValueTriggeredCallback.php b/framework/Web/UI/ActiveControls/TValueTriggeredCallback.php index 305afd70..4f7c8332 100644 --- a/framework/Web/UI/ActiveControls/TValueTriggeredCallback.php +++ b/framework/Web/UI/ActiveControls/TValueTriggeredCallback.php @@ -4,12 +4,14 @@ * * @author Wei Zhuo * @link http://www.pradosoft.com/ - * @copyright Copyright © 2005-2008 PradoSoft + * @copyright Copyright © 2005-2008 PradoSoft * @license http://www.pradosoft.com/license/ * @version $Id$ * @package System.Web.UI.ActiveControls */ +Prado::using('System.Web.UI.ActiveControls.TTriggeredCallback'); + /** * TValueTriggeredCallback Class * -- cgit v1.2.3