How to get display name of the attribute?
Jan 30, 2015
06:44 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Jan 30, 2015
06:44 AM
How to get display name of the attribute?
ACCEPTED SOLUTION
Accepted Solutions
Jan 30, 2015
07:06 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Jan 30, 2015
07:06 AM
Resolved by next code:
LWCNormalizedObject obj = new LWCNormalizedObject(persistable, null, locale, null);
obj.load(attributeInnerName);
String displayName = obj.getAttributeDescriptor(attributeInnerName).getLabel();
1 REPLY 1
Jan 30, 2015
07:06 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Jan 30, 2015
07:06 AM
Resolved by next code:
LWCNormalizedObject obj = new LWCNormalizedObject(persistable, null, locale, null);
obj.load(attributeInnerName);
String displayName = obj.getAttributeDescriptor(attributeInnerName).getLabel();
