绑定到列表使用 DataBinder.Eval
我有以下对象:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好吧——我犯了一个愚蠢的错误!
改变:
到:
使一切变得不同。换句话说,我将 CellContents 设置为该类的属性。
富有的。
OK - stupid mistake by me!
Changing:
to:
made all the difference. In other words I made CellContents a property of the class.
Rich.