-->

Add Excel upload control to grid toolbar

2019-07-08 02:21发布

问题:

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.

回答1:

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.

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



标签: acumatica