绑定到列表使用 DataBinder.Eval

发布于 2024-09-17 23:15:22 字数 917 浏览 2 评论 0原文

我有以下对象:

CrossTabDataObject
{
   string RowName{get;set;};
   int RowId{get;set;}
   List<string> CellContents = new List <string>();
   //Constructor..... etc.

}

我正在使用 GridView in asp.net 3.5 构建动态交叉表网格

我希望绑定到动态列 1 的 CellContents[0],动态列 2 的 CellContents[1](动态列 0 是 RowName)我正在使用:

object boundValueObj = null;
Control ctrl = (Control)sender;
IDataItemContainer dataItemContainer = (IDataItemContainer)ctrl.NamingContainer;
boundValueObj = DataBinder.Eval(dataItemContainer.DataItem, strSelectedID);

此代码位于 gridview 的 InstantiateIn 函数中,因为我在交叉表的每个单元格中创建下拉列表模板。

我有根据正在创建的列设置 strSelectedID 的代码(未显示)。

当动态列 [0] 的 strSelectedID 等于“RowName”时,DataBinder.Eval 函数可以正常工作并按预期设置boundValueObj。当 strSelectedID 设置为“CellContents[n]”(其中 n 是列索引)时,就会出现问题。

DataBinder.Eval 仅适用于对象的属性和字段。我该如何解决这个问题?

谢谢,

里奇。

I have the following object:

CrossTabDataObject
{
   string RowName{get;set;};
   int RowId{get;set;}
   List<string> CellContents = new List <string>();
   //Constructor..... etc.

}

I'm building a dynamic crosstab grid using GridView in asp.net 3.5

I wish to bind to CellContents[0] for dynamic column 1, CellContents[1] for dynamic column 2 (dynamic column 0 is the RowName field from the CrossTabDataObject) etc. I am using:

object boundValueObj = null;
Control ctrl = (Control)sender;
IDataItemContainer dataItemContainer = (IDataItemContainer)ctrl.NamingContainer;
boundValueObj = DataBinder.Eval(dataItemContainer.DataItem, strSelectedID);

This code is in the InstantiateIn function of the gridview as I'm creating drop down list templates in each cell of the crosstab.

I have code (not shown) that sets strSelectedID depending on the column being created.

When strSelectedID is equal to "RowName" for dynamic column [0] the DataBinder.Eval function works fine and sets boundValueObj as expected. The problem comes when strSelectedID is set to "CellContents[n]" where n is the Column Index.

DataBinder.Eval only works with properties and fields of objects. How do I get around this?

Thanks,

Rich.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

初心未许 2024-09-24 23:15:22

好吧——我犯了一个愚蠢的错误!

改变:

CrossTabDataObject
{
   string RowName{get;set;};
   int RowId{get;set;}
   List<string> CellContents = new List <string>();
   //Constructor..... etc.

}

到:

CrossTabDataObject
{
   string RowName{get;set;};
   int RowId{get;set;}
   List<string> CellContents{get;set;}
   //Constructor
   public CrossTabDataObject()
   {
     CellContents = new List<string>();
   }

}

使一切变得不同。换句话说,我将 CellContents 设置为该类的属性。

富有的。

OK - stupid mistake by me!

Changing:

CrossTabDataObject
{
   string RowName{get;set;};
   int RowId{get;set;}
   List<string> CellContents = new List <string>();
   //Constructor..... etc.

}

to:

CrossTabDataObject
{
   string RowName{get;set;};
   int RowId{get;set;}
   List<string> CellContents{get;set;}
   //Constructor
   public CrossTabDataObject()
   {
     CellContents = new List<string>();
   }

}

made all the difference. In other words I made CellContents a property of the class.

Rich.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文