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.
相关问题
- How to add a memo / formatted text field ala Cases
- Create Case with Activity through Rest API
- Acumatica dynamic dropdown
- How to create an ad-hoc email and send it using Ac
- How to include a dialog for file upload
相关文章
- Cannot load a reference assembly for execution
- Adding additional filter field on process shipment
- Create custom User Control for Acumatica
- Sales Price Updating Every Other Time
- Import Amount Paid in screen Bill And Adjusment us
- Acumatica Configuration Wizard error: Can't ge
- How to properly sort Tasks having multi-level Task
- Prevent update of note/files on disabled views
You need to decorate data view with
PXImportAttribute
.Example:
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 toTrue
.AllowUpload
property controls the display of theLoad Records from file
toolbar button.