summaryrefslogtreecommitdiff
path: root/framework
diff options
context:
space:
mode:
authorxue <>2006-08-31 19:56:05 +0000
committerxue <>2006-08-31 19:56:05 +0000
commit8ae818015bf4ea84c5ad0d66fd9ad54e750db95f (patch)
tree64b7fbbc2bade7f0ef2b949954dff0d2160823f6 /framework
parent42b59239cf0036ab096cc67ead335e3a81b1cdf4 (diff)
doc fix.
Diffstat (limited to 'framework')
-rw-r--r--framework/Web/UI/WebControls/TDropDownListColumn.php9
1 files changed, 9 insertions, 0 deletions
diff --git a/framework/Web/UI/WebControls/TDropDownListColumn.php b/framework/Web/UI/WebControls/TDropDownListColumn.php
index f5f08fd9..bcbd87e4 100644
--- a/framework/Web/UI/WebControls/TDropDownListColumn.php
+++ b/framework/Web/UI/WebControls/TDropDownListColumn.php
@@ -42,6 +42,15 @@ Prado::using('System.Web.UI.WebControls.TDropDownList');
* Note, if you specify {@link setListDataSource ListDataSource}, do it before
* calling the datagrid's dataBind().
*
+ * The dropdown list control in the TDropDownListColumn can be accessed by one of
+ * the following two methods:
+ * <code>
+ * $datagridItem->DropDownListColumnID->DropDownList
+ * $datagridItem->DropDownListColumnID->Controls[0]
+ * </code>
+ * The second method is possible because the dropdown list control created within the
+ * datagrid cell is the first child.
+ *
* @author Qiang Xue <qiang.xue@gmail.com>
* @version $Revision: $ $Date: $
* @package System.Web.UI.WebControls