有谁知道如何获得radgrid细节表的`InsertItem`?

时间:2010-08-31 05:58:26

标签: radgrid telerik-grid

有谁知道如何获得radgrid详细信息表的InsertItem? 我可以使用以下代码从主表中获取。

Radgrid1.MasterTableView.GetInsertItem();

但我如何从详细信息表中获取它?

1 个答案:

答案 0 :(得分:1)

您需要父项的索引:

RadGrid1.Items[?].ChildItem.NestedTableViews[0].GetInsertItem();

在EventHandler中,您可以遍历发送方的父对象,直到GridEditFormInsertItem。