我想更改特定页面的PXSelector描述字段的显示名称。我尝试如下,但它不起作用:
PXUIFieldAttribute.SetDisplayName(sender, "DistributorID_description", "ABC-XYZ");
答案 0 :(得分:0)
尝试使用initialize()而不是选择行来使用以下语法
设置相同的行PXUIFieldAttribute.SetDisplayName<DACName.fieldName>(CacheRelatedToYourDAC, "newValue");
OR
您可以使用CacheAttached事件更改字段的显示名称。 别忘了在这里复制所有现有属性
[DAC_Field_Attribute_1]
...
[DAC_Field_Attribute_N]
protected virtual void DACName_FieldName_CacheAttached(PXCache sender)
{
...
}