Create custom User Control for Acumatica

C#asp.netWebformsUser ControlsAcumatica

C# Problem Overview


I am attempting to create a custom User Control that is usable in the Acumatica Framework. Documentation is very limited so I was hoping someone may have some experience/examples of how best to implement?

It appears possible by creating a WebControl derived from PXWebControl and creating a global JS function with a matching name.

C# Solutions


Solution 1 - C#

To create a custom User Control in an easy way, you need to:

  • Open Customization of your project (System - Customization - Customization Project)
  • On the left side, you can see your screens in your customization. Find screen that needs or add needed screen. Go to the necessary view.
  • Select add controls and add your needed control.

You can see in an image provided below.

enter image description here

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionAnth12View Question on Stackoverflow
Solution 1 - C#HaykView Answer on Stackoverflow