how to use AllowEdit in Acumatica

孤街醉人 提交于 2019-12-23 16:27:26

问题


I'm having this problem:

I'd like to try to make a pop up for CrossSection table page using AllowEdit = "true", the pencil symbol has already showed, but it doesn't open anything, I already entered the page of CrossSection into hidden in SiteMap. Is there any step I miss to use AllowEdit? How can I use AllowEdit?


回答1:


Along with PXSelector attribute and AllowEdit for PXSelector aspx control, make sure to set the primary graph for the DAC. The primary graph determines the default page where a user is redirected for editing a data record.

Example:

[PXPrimaryGraph(typeof(CrossSectionMaint))]
[Serializable]
public class CrossSection : PX.Data.IBqlTable
{
...
}


来源:https://stackoverflow.com/questions/36931158/how-to-use-allowedit-in-acumatica

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!