Skip to main content
Answer

Revert long run operation back to checkbox instead of the popup window in upper right

  • September 12, 2022
  • 3 replies
  • 78 views

Forum|alt.badge.img

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. 

Best answer by Naveen Boga

Hi @ckwiat46  Understood. Thanks for providing the details.

 

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.

 

3 replies

Naveen Boga
Captain II
Forum|alt.badge.img+19
  • Captain II
  • September 12, 2022

HI @ckwiat46  Sorry, Can you please elaborate your question.


Forum|alt.badge.img
  • Author
  • Jr Varsity III
  • September 12, 2022

@Naveen Boga 

So in older versions, when you perform an action, it shows either a green checkbox or red x just right of the actions menu. (https://capture.dropbox.com/qR22yFP1UL4Fsen8)


In the newer versions, it no longer does that, and shows you the model popup in the upper right. (

https://capture.dropbox.com/WbDA8Ns4OTYGBF2m)


My question is whether it’s possible to revert back to the previous way this is handled.

 


Naveen Boga
Captain II
Forum|alt.badge.img+19
  • Captain II
  • Answer
  • September 12, 2022

Hi @ckwiat46  Understood. Thanks for providing the details.

 

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.