使用选定的事件行在acumatica中重命名网格

时间:2017-06-08 03:56:42

标签: c# sql asp.net acumatica

我尝试使用以下代码重命名acumatica中的显示名称

PXUIFieldAttribute.SetDisplayName<BOMMaterial.qtys>(this.MaterialDetail.Cache, "test");

PXUIFieldAttribute.SetDisplayName(this.Caches[typeof(BOMMaterial)], typeof(BOMMaterial.qtys).Name , "test");

如果我将代码放在事件之外,它确实有效,所以当加载屏幕时它会改变。但是,如果我将其放在rowselected事件中并使用验证,则不会更改显示名称。它没有显示任何错误。

1 个答案:

答案 0 :(得分:1)

确保将RepaitColumns属性设置为True控件的PXGrid

enter image description here