Platform: Object Identifier Component V1.0 Technical Design - SAP/fundamental-ngx GitHub Wiki
Object Identifier
Summary
The object identifier is a short text that represents the key identifier of an object. You can find the object identifier in a table as an identifier of the line item.
Example
<fdp-object-identifier
[id]="id of the element'"
[title]="identifierTitle"
[display]="true|false"
[clickable]="true|false"
(click)="onTitlepress()">
{{text}}</fdp-object-identifier>
Design
Property Bindings
[title]="identifierTitle"
Title of the Object
[display]="true|false"
show or hide the object identifier component.
[clickable]="true|false"
dislays link on title which shows it is active and clickable.
Eventbinding
[click]="onTitlepress()'"
Event fired on click of title.
i18n
Link to general support for i18n: Supporting internationalization in ngx/platform
Special Usecase: No
fdp-object-identifier
can be supported as:
<fdp-object-identifier
[id]="id of the element'"
i18n="@@content"
i18n-title="@@title"
[title]="identifierTitle"
[display]="true|false"
[clickable]="true|false"
(click)="onTitlepress()">
{{text}}
</fdp-object-identifier>
Redesign Required: No