Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
325
How to Retreive the Summary Value from the Nested Sub Grid
posted

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.

  • 6729
    Suggested Answer
    Offline posted

    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.