Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有谁知道如何获取InsertItemradgrid 的详细信息表?我可以使用以下代码从主表中获取。
InsertItem
Radgrid1.MasterTableView.GetInsertItem();
但是我怎样才能从细节表中得到它呢?
您需要父项的索引:
RadGrid1.Items[?].ChildItem.NestedTableViews[0].GetInsertItem();
在 EventHandler 中,您可以遍历发送方的父对象,直到 GridEditFormInsertItem。