radListview telerik 访问服务器端绑定上的对象

发布于 2024-12-08 07:40:46 字数 80 浏览 1 评论 0原文

我有一个 telerik listview 的对象数据源,在 onitemcreated 方法上我希望能够提取它所在的当前对象。谁能帮助我吗?谢谢

I have a object datasource for a telerik listview and on the onitemcreated method I want to be able to pull out that current object that it is on. can anyone help me? Thanks

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

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

发布评论

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

评论(1

痕至 2024-12-15 07:40:46

您无法在 OnItemCreated 中访问数据对象,因为这发生在任何数据绑定发生之前。相反,您应该在 OnItemDataBound 中进行处理。您可以使用这样的逻辑:

var listDataItem = e.Item as RadListViewDataItem;
if (listDataItem != null)
{
    var theData = listDataItem.DataItem;
    //...
}

Telerik 有一个 其文档中的页面专门解决了 ItemCreatedItemDataBound 事件之间的差异。这是其中的一个片段:

ItemCreated 在项目进行数据绑定之前被触发。因此没有数据
仍在列表视图项或嵌套在其中的控件中。在
ItemDataBound全部可用。

You cannot access the data object in OnItemCreated because that occurs before any data binding occurs. Instead, you should do you processing in OnItemDataBound. You can use logic like this:

var listDataItem = e.Item as RadListViewDataItem;
if (listDataItem != null)
{
    var theData = listDataItem.DataItem;
    //...
}

Telerik has a page in their documentation specifically addressing the differences between the ItemCreated and ItemDataBound events. Here is a snippet of that:

ItemCreated is fired before the item is data-bound. Thus no data
is still in the listview item or the controls nested inside it. In
ItemDataBound all is available.

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