Skip to content

Instantly share code, notes, and snippets.

@lekker-solutions
Last active October 20, 2021 14:29
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
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