Hello erybody,
today I want to share one important note, which took significant amount of time from me to finish.
I had page which as html output few tables. For me it was nessesary to make one page per table. In order to achieve it I've found following CSS:
<style>
...
Hello everybody,
today I want to make a short document about filters in .Net Core.
There are by default four types of filters:
Filters that implement IAuthorizationFilter which allow us to implement OnAuthorization method which allow us to add custom security logic.
Filters that implement IActio...
Hello everybody,
today I want to share one interesting gotcha which took plenty of efforts from mine side in order to understand it.
Recently I got an assignment to modify behaviour of Create Prepayment action at purchase orders.
If to look at CreatePreapyment implementation, it has followi...
If you want to create custom Attribute for autonumbering field you need:
Create Setup page for configuring autonumbering field or maybe you can use existing
Create Attribute which you'll add to your entity
Add attribute to field that you need increment
Create Setup page for co...
Hello everybody,
today I want to make short post on how to confiugre one to many relationship in Entity Framework 6.
Imagine following: One group can have multiple students. So one to many relationship. For this purpose you can use following convention configuration agreement:
public class&n...
Hello everybody,
here I want to leave fragment of code related to submitOrder:
public void onStart(IContext context) throws JFException {
IEngine engine = context.getEngine();
IHistory history = context.getHistory();
Instrument instrument = Instrument.EURUSD;
context.setSubscr...
Hello everybody,
here I want to document new scope in Acumatica: PXImpersonationContext.
As often is the case try to look at presented code:
var thr = new Thread(
...
Hello everybody,
today I want to write a short notice on how to manage uppercase/lowercase options for serialization in .Net Core.
In mine practice I often had situation, when javascript or typescript code sends me some staff in lowercase class names, but in C# I'm used to Upper case class n...
Hello everybody,
today I want to fulfill my promise that I gave to one of my readers.
He left at mine blog following question:
How do we use required<> in place of current<> and pass some string constant for selector? That question was asked in context of this article. ...
Hello everybody,
today I want to write a few words about built in data sets in sklearn library of python but from Visual Studio 2017 prospective. You may ask why Visual Studio 2017 if there are plenty of other options? I can say that main reason is becuase I like debugging features that availabil...