Hello everybody,
just short notice of NUnit function Assert.That
[Test]
public void CheckAddition()
{
Assert.That(CalculatorClass.Minus (5, 2), Is.EqualTo(3));
}
public void CheckAddition()
{
//old styel Assert.AreEqual(3, CalculatorClass.Minus (5, 2));
}
Ready to take your Acumatic...
Hello everybody,
just short glimpse of how to make mail control in Acumatica. It's very simple task. Make dac class with string and bind it to page in the following way:
<px:PXMailEdit ID="edUsrPersonalMail" runat="server" DataField="UsrPersonalMail" CommitChanges="True" ></px:PXMailEdit...
Hello everybody,
today I want to describe in simple words some training algos of Encog.
Before I'll continue, I want to show general block schema of training algorithms:
Training algorithm
Init NN can look like this:
public BasicNetwork CreateNetwork()
{
var network = n...
Hello,
today I had task of switching to new version of Acumatica. From 4.2 to 5.1.
The first surprise which I faced was lack of .Net framework 4.5.1. This shocked me especially from viewpoint that I had Visual Studio 2012 installed with service pack 4. Then I found that I need "Microsoft .N...
Hello everybody,
I want to boast that I finally received T200 Acumatica certificate!!!!!! And now I can proudly say that I'm certified Acumatica developer,
which gained
T100
T101
T200
T300
T900 certificates.
T200 completion
Hello everybody,
today I want to shre small note of how to generate timestamp for Acumatica objects ( in case if you use for some reason PXDataBase.Insert or PXDataBase.Update)
PXDataBase has public method SelectTimeStamp.
public static byte[] SelectTimeStamp()
{
return Provider.S...
I want to start campaign for making machine for my neural networks investigations.
Here is the link if you want to participate
http://igg.me/p/neural-network-time-series-forecaster/x/10380153
Ready to take your Acumatica experience to the next level? If you have a unique business need or a...
Few notes about PXAccumulatorAttribute
If to inherit from PXAccumulatorAttribute, you'll have access to member _SingleRecord. If to set in constructor to true, you'll configure single record update mode.
There is PrepareInsert method. This method intended for updating policy for t...
Hello everybody.
Today I want to share some details about inner kitchen of Checkboxes in grid of Acumatica.
If to look inside of generated grid of Acumatica with FireFox Dom and style inspector, you can see following structure:
Item with checkbox is implemented as td, which has div, and has anoth...
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...