如何获取详细网格的行数?

时间:2016-09-07 21:51:48

标签: acumatica

我正在尝试获取文档详细信息网格中的行数。我不知道如何在另一个实例中调用它。

例如:在这个方法中,我逐行接收,我想知道如何获得接收的总行数。

public virtual void ARTran_RowPersisting(PXCache sender, PXRowPersistingEventArgs e)
{
    var row = (ARTran)e.Row;
}

This is for screen Invoices and Meme (AR301000)

1 个答案:

答案 0 :(得分:1)

执行.Select()数据视图并使用Count属性。

var rowCount = Base.Transactions.Select().Count;

在您的情况下,您需要详细信息网格使用的数据视图,即Transactions。您可以使用Inspect Element工具找到有关如何构建屏幕的更多信息。您可以在http://acumaticaopenuniversity.com/pdf/T300_Acumatica_Cust_Platform.pdf

上详细了解相关信息