Hello everybody,
recently I was asked by one friends of mine, how pageSource in Acumatica works, i.e. how to code/decode pagesource contents.
After different methods of trial and error I've created following C# code in order to code/decode pageSource:
Snippet
private static string...
Hello everybody,
today I want to write a few words on how to add links to some entites in Acumatica.
So, recently I've had an assignment to add redirect into existing grid, so intead of showing some text show nice link which will lead to Purchase order.
Here is what I've done in order to achieve...
Hello everybody,
this post is intended for those people who want to make development for Acumatica, but don't know where to start or how to start. Or for those, who know C#, but absolutely can't figure out how to work with Acumatica.
So, first of all, I'll describe some general ideas, and then pr...
Recently I've posted following question on stackoverflow:
I have following request from my customer to be implemented in Acumatica:
Create form which have input fields on top.
Form should have first grid, which reacts on parameters on top
Form should have second grid, which reacts o...
Hello everybody,
today I want to document in my blog interesting behavior of PXFilter in Acumatica.
First of all, few words about it's behavior. If Acumatica sees PXFilter, it will create single record, which will remain only in cache and never will travel to the db. Recently I faced intere...
Hello everybody,
today I want to share one trick which can save you few lines of code.
Imagine case: you created graph, and want to read something from db, and then set current property of that graph view to some value. How to do it in one line? The anser is simple, with help of Search<>
Fo...
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...