Loading ...

Redirection Types In Acumatica

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...

Order Of Views In Graph In Acumatica

Hello everybody, note of today is value of orders. In the word of C# if you work with your class, you as usually don't care what you declare in your code. But in Acumatica graph order of data viewes is important, because they define order of saving data to the database. If you think that surprise...

Enabling Reusable Grid Filters

Hello everybody, today I want to note reusable grid filters. Acumatica has interesting dialog window, wich is named Filter Settings in which user can define and save custom fitlers and then use them every time this user opens the page. They are recommended for usage at inquiry and processing page...

Acumatica Predefined Width Values

Hi, I want to share predefined options for the ColumnWidth property:   • XXS(100px) • XS(150px) • S(200px) • M(250px) • XM(300px) • L(350px) • XL(400px) • XXL(450px) Ready to take your Acumatica development to the next level? Whether you need tailored column widths like XXS (100px) or XXL (4...

Encog Training

Hello everybody, suppose you have read two of my previous notes about network creating and basic input into neural network and now you have huge desire to make training on neural network with Encog. You are on the right way. One of the options which you have to try is the following: va...

Encog Compute

Hello. Some other generalizations of how to use Encog. For getting result of network you can use Compute method: var output = network.Compute(input); If we want to get result of bigger number of items, we can use following construction foreach(var item in trainingSet) { var output = netwo...