Hello everybody.
Today I want to share notice of how to work with processing screens.
Processing screen
But of course not in very standard situation. One of my clients requested me the following: he wanted at processing screen to select some items in screen in part 1, then monitor...
Hello everybody,
today I want to write few words how to work with selectors in Acumatica.
So, imagine, you have the following selector in Acumatica:
<px:PXSelector ID="NmbUsrBillPMTask" runat="server" DataField="UsrBillPMTask"/>
In order to make it work as selector, you need to do the follo...
Hello everybody,
Today I want to share short glimps how to Enable/Disable menu item. Let's some menu. For example it looks like this:
menu item actions
Suppose, we added menu action Activate in the following way:
public PXAction<EPEmployee> Activate;
[PXButton]
[PXU...
Hello everybody,
today I want to notice what kind of redirections are available in Acumatica:
PXRedirectRequiredException opens the specified application page in the same window or a new one. By default, the user is redirected in the same window.
PXPopupRedirectException opens the specified appl...
I want to note how to restore original condition of Acumatica if Unpublish project failed:
1. Restore the content of the App_Data\RollbackFilesfolder to the root folder of the website.
2. Clear the content of the CstPublishedfolder.
3. Delete the files placed in the Cachessubfolder of the App_Cod...
Hello everybody,
today I want to share how to make grid item to feet all container. For this purpose you just can use property AutoSize. It makes grid to feet entire area of parent container
Hello everybody,
recently I had the following situation.
According to business logic, I created RowDefaulting. And it worked great. Then business analyst decided to check copy/paste functionality of Acumatica, and you know what? He discovered that copy/paste is broken. After investigation I...
Greetings to everybody,
today I want to document how to make selector in Acumatica.
I had the following use case:
1. Acumatica dropdown, which can have three values ( for example a, b, c) .
1.1 In case if user select option a, I need to show in PXSelector values from Table A with som...
Hello everybody,
today I want to share with you information about two functions:
SetValueExt and SetDefaultExt.
Names of them are pretty self-explanatory, which means SetValueExt assigns specific value to field and SeDefaultExt assings default value to a field. But SetValueExt method...
Hello,
I want to share with you how to block some columns in Acumatica.
You can do it with the PXUIFieldAttribute.SetEnabled method.
Let's say you have DAC PRTran with column earningType and values of PRTran you get from PaySlipDetails view. Then you can block whole column wit...