Add Excel upload control to grid toolbar

2019-07-08 02:31发布

Is there a way to get the grid control that allows one to upload data from an Excel sheet? I haven't found a command that will put this control on the toolbar.

标签: acumatica
1条回答
闹够了就滚
2楼-- · 2019-07-08 03:07

You need to decorate data view with PXImportAttribute.

Example:

[PXViewName(Messages.SOLine)]
[PXImport(typeof(SOOrder))]
[PXCopyPasteHiddenFields(typeof(SOLine.completed))]
public PXSelect<SOLine, Where<SOLine.orderType, Equal<Current<SOOrder.orderType>>, 
             And<SOLine.orderNbr, Equal<Current<SOOrder.orderNbr>>>>,OrderBy<Asc<SOLine.orderType, Asc<SOLine.orderNbr, Asc<SOLine.lineNbr>>>>> Transactions;

PXImport attribute enables the user to load data from the file to the grid. The attribute is placed on the data view the grid uses to retrieve the data.

We have used PXImportAttribute(Type) constructor where input parameter is the first (Primary) DAC that is referenced by the primary view of the graph where the current view is declared.

Set Grid's AllowUpload property to True.

enter image description here

AllowUpload property controls the display of the Load Records from file toolbar button.

查看更多
登录 后发表回答