-
Notifications
You must be signed in to change notification settings - Fork 133
Platform: Object Identifier Component V1.0 Technical Design
sKudum edited this page Mar 13, 2020
·
6 revisions
* This indicates the technical status of an object.
-
It is enabled for the dynamic page layout, snapping header, object page header, upload collection, and object list item.
-
The technical status can be represented as and icon, with an icon and text, or as text only, depending on the screen size.
-
Currently, the following technical statuses can be visualized by the object marker:
-
Flag
-
Favorite
-
Editing Status (Draft, Locked, Unsaved Changes)
-
The editing status is part of the draft handling concept.
<fdp-object-marker
[id]="id of the element'"
[type]="markerType"
[show]="iconOnly|textOnly|iconAndText"
(click)="onpress()">
{{marker text}}</fdp-object-attribute>
Type of markers.
export type MarkerType = 'favorite'|'flagged'|'locked'|'lockedBy'|'unsaved'|'unsavedBy'|'draft';
what to be visible in marker
export type ShowInMarker = iconOnly|textOnly|iconAndText;
Event fired on click of Marker.