将仓库选择器添加到 acumatica 中的自定义字段
我创建了一个自定义字段并尝试向其中添加仓库选择器。我尝试阅读自定义指南并进行尝试,但是选择器没有显示在自定义字段中。 这是我尝试过的代码。 #region UsrCustomSite [PXDBInt] [PXUIField(DisplayName="仓库", 可见性 = PXUIVisibility.SelectorVisible)] [PXSelector(typeof(搜索
I created a custom field and trying to add the warehouse selector to it.I try to read from the customization guide and tried it but,the selector does not show up in the custom field.
This is the code I tried.
#region UsrCustomSite
[PXDBInt]
[PXUIField(DisplayName="Warehouse", Visibility = PXUIVisibility.SelectorVisible)]
[PXSelector(typeof(Search<IN.INSite.siteCD>),typeof(IN.INSite.descr),DescriptionField =(typeof(IN.INSite.siteCD)),SubstituteKey =(typeof(IN.INSite.siteCD)),DirtyRead =true)]
public virtual int? UsrCustomSite { get; set; }
public abstract class usrCustomSite : PX.Data.BQL.BqlInt.Field { }
#endregion
Am I missing something here?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我会尝试更改
为
[PXSelector(typeof(Search
)您正在存储一个 int,因此您需要 id,替代 Key 设置将使其显示,以便 UI 将显示CD。
I would try changing
to
[PXSelector(typeof(Search<IN.INSite.siteID>
)You are storing an int so you want the id, the substitute Key setting will make it so that the UI will show the CD.