Skip to content

Instantly share code, notes, and snippets.

@lekker-solutions
Last active October 20, 2021 14:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lekker-solutions/46b8a010c4ceae41bea63707b8e9ba22 to your computer and use it in GitHub Desktop.
Save lekker-solutions/46b8a010c4ceae41bea63707b8e9ba22 to your computer and use it in GitHub Desktop.
Test Processing screen
sing System;
using System.Collections.Generic;
using PX.Data;
using PX.Objects.GL;
namespace ParallelTest
{
public class ParallelTester : PXGraph<ParallelTester>
{
public PXSave<Batch> Save;
public PXCancel<Batch> Cancel;
public PXProcessing<Batch> DetailsView;
public ParallelTester()
{
DetailsView.SetProcessDelegate(ProcessList);
}
public static void ProcessList(List<Batch> list)
{
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment