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
515
Excel Export with ColumnLayout
posted

Hi,

I checked Excel Export samples. But it is not working when there is a ColumnLayout.

Do you have any sample export to excel with ColumnLayout?

Parents
No Data
Reply
  • 40030
    Offline posted

    Hi, 

    So, if you're talking about how to walk through Child data through the xamWebGrid, you can do so by:

    foreach (Row row in this.dataGrid.Rows)

    {
                foreach(ChildBand cb in row.ChildBand)
               {
                         foreach(Row childRow in cb.Rows)
                         {
    Hope this helps, 
    -SteveZ

Children
No Data