Hi,
Can any body please provide solution for the below Issue:
We have to retreive the summary value from the nested sub-sub grid.
Below code snippet used to get the summary field value for the parent grid (Single grid).
MsgBox("Summary Value: " + objUltra.GetNAProperty("Rows.SummaryValues[0].Value").ToString())
So how to get the summary value from the Nested sub-sub Grids. Please provide sample code snippet for the same.
Kindly let us know, If you need any more information.
Thanks & Regards,
Vijay Jadi.
Hi Vijay,
Loking at the line of code you have I think you should be able to get the summary values for child rows of the first parent rpw by this:
MsgBox("Summary Value: " + objUltra.GetNAProperty("Rows[0].Rows.SummaryValues[0].Value").ToString())
I haven't tested ths but it should work. you can switch the index of the parent row to get summaries for differnet child collections.
Let me know if this works for you and confirm as answer if it work so others can use it.