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.
我正在使用 Janus GridEx(Windows 窗体)并希望将内容导出到 Excel。我们使用了 Janus 之前内置的导出功能,但尤其是使用分层网格时,导出的文件看起来不专业。
所以现在我们编写了自己的导出代码,一切正常,除了子表或分组的总行数没有导出。这样做的原因是循环遍历GridEx.GetRows()然后递归遍历parentRow.GetChildRows()不会拾取网格中显示的任何总行。
GridEx.GetRows()
parentRow.GetChildRows()
有谁知道如何获得这些总行数?
使用 ASP.NET 内置的数据网格。它会解决你的问题。
循环通过.GetRows 时,您可以检查JanusRow.RowType,如果它等于Janus.Windows.GridEX.RowType.TotalRow,则该行是其中包含总值的行。
*这是使用 Janus Grid v3.5