Is it possible to revert the long run operation status back to the checkbox instead of the popup that shows up in the upper right? We are on 2022 R1.
Answer
Revert long run operation back to checkbox instead of the popup window in upper right
Best answer by Naveen Boga
Hi
We can do this for the Processing screen, where we go back to the OLD timer display instead of the pop-up.
Below is the small piece of code to add in the Processing screens
public class GraphNameProcess : PXGraph<GraphNameProcess>
{
public override bool IsProcessing
{
get { return false; }
set { }
}
}
I don’t think we can do this for the normal screen with old time instead of popup for the long-run operations.
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.