Create custom User Control for Acumatica(为 Acumatica 创建自定义用户控件)
问题描述
我正在尝试创建可在 Acumatica 框架中使用的自定义用户控件.文档非常有限,所以我希望有人可能有一些如何最好地实施的经验/示例?
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?
似乎可以通过创建一个从 PXWebControl 派生的 WebControl 并创建一个具有匹配名称的全局 JS 函数来实现.
It appears possible by creating a WebControl derived from PXWebControl and creating a global JS function with a matching name.
推荐答案
要以简单的方式创建自定义用户控件,您需要:
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.
这篇关于为 Acumatica 创建自定义用户控件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:为 Acumatica 创建自定义用户控件
基础教程推荐
- C# 从 List<List<int>> 中删除重 2022-01-01
- 如何使用 .Net 检查 Active Directory 服务器是否已启动并正在运行? 2022-01-01
- 我应该在后面的代码中直接使用 Linq To SQL 还是使 2022-01-01
- 当值可以是对象或空数组时反序列化 JSON 2022-01-01
- WPF 模态进度窗口 2022-01-01
- .NET SerialPort DataReceived 事件未触发 2022-01-01
- 如果有人提交恶意软件Nuget包怎么办? 2022-01-01
- Azure Functions:CosmosDBTrigger 未在 Visual Studio 中触发 2022-01-01
- 禁止输入少量字符,例如'<'、'&a 2022-01-01
- Moq It.Is<>不匹配 2022-01-01
