我正在尝试获取文档详细信息网格中的行数。我不知道如何在另一个实例中调用它。
例如:在这个方法中,我逐行接收,我想知道如何获得接收的总行数。
public virtual void ARTran_RowPersisting(PXCache sender, PXRowPersistingEventArgs e)
{
var row = (ARTran)e.Row;
}
答案 0 :(得分:1)
执行.Select()
数据视图并使用Count
属性。
var rowCount = Base.Transactions.Select().Count;
在您的情况下,您需要详细信息网格使用的数据视图,即Transactions
。您可以使用Inspect Element工具找到有关如何构建屏幕的更多信息。您可以在http://acumaticaopenuniversity.com/pdf/T300_Acumatica_Cust_Platform.pdf