Hello everybody,
now I want to share with you difference between RowInserting and RowInserted events.
The RowInserting event happens before the new data record is actually inserted into the cache but after all field events happen for this data record. The RowInserted event happens after the actua...
Hello everybody,
Imagine that you crated in your page Grid, and when opened it at page can't notice buttons Refresh Add Row, Delete Row, Fit To Screen in Grid. I believe it can be puzzling how to add those buttons to screen as it was for me at once. Add to your grid following line:
&nb...
Hello everybody,
today just quick fact. In master-detail DAC and Graph there are used attributes PXDBDefault and PXParent. For me it was interesting to know, that PXDBDefault is intended for initializing values and PXParent is intended for cascade deleting of rows.
Hello everybody.
In case if you want to add some table to Acumatica with compnayid field, and suddenly you can't save it, check weather you configured default Value or Binding in db. It should be ((0)) like on the screenshot:
I noticed it only recently while coping with error message about...
Hello everybody.
I want to share with whole world a story. In the begining of this month I created web form. Added there some controls. Today I wanted to add one another control, and after my addition miracously controls at page disappeared. I was surprised, looked for ways to solve problem, and...
Hello Everybody.
Today I will speak about some trivial matters, which I found during usage reflector while analyzed received source code of acumatica.
So lets go on.
Each page of acumatica as base class PX.Web.UI.PXPage.
Base page has the following declaration:
public PXDataSource DefaultDat...
Hello everybody,
today just a short hint. In case if you want to add some column in Acumatica DB, you should start field from usr prefix. For exaple if you want to add field Payrollcat, you should name it UsrPayrollcat. If you'll not use this advice, next update of Acumatica will remove your...
Hello everybody,
today I want briefly share how to add button to Grid in Acumatica. Actually button without any dialogs. Just button with posibility to run C# code.
Lets say you have grid, and want name for button Calculate.
Then in graph you should write something like this:
public PXActi...
Small hack.
If you modify table in Microsoft SQL Server Management Studio, it sometimes says something like
Saving changes is not permitted. The changes you have made require the following tables to be dropped and re-created. You have either made changes to a table that can't be recreated o...
Hello everybody,
today I want to share how to implement master detail form step by step starting from small. So, recently I was in situation when I created form, generated DAC, created aspx page, and got some errors. When I asked support for help, they informed me that they will help me only one...