Loading ...

Types Of Redirects In Acumatica

Hello everybody, today I want to note about redirects. In Acumatica you can redirect user to another webpage. Acumatica provides option of redirecting to following scenarios: To another page in Acumatica To another report To any destination url Try to gues, how redirections are implemented? As...

What Are Asserts In Nunit

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

Email Control In Acumatica

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