Today, I will walk you through how to implement your own MVC controller in Acumatica, specifically for version 24R1 and later. This approach is incredibly useful for creating custom endpoints within Acumatica.
Why Choose an MVC Controller?
Custom API (URL) CreationWith this method, you can defin...
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 document one gotcha related to difference between Html.TextAreaFor and Html.EditorFor.
Recently I've had a requirement to add hint text to text fields. In Html world there are two ways to create input field which accepts text: <input type="text" />...