Display a short non-blocking notification message to the user. The container will determine how best to display this message.
text to display
display styling
OptionalhideAfter: numberoption to auto hide after the specified delay in milliseconds
OptionalNotifyNotify the container of a component event. For cancelable events, the container can set args.cancel = true before the await resolves.
If an action occurs inside a component where it would be desirable for the containing UI to open a specific record, if supported, this event can be listened to and the container UI can then open the record.
this is the Entity NAME from the Entity metadata, not the table name or base view name. Use Entity Metadata to provide the entity name here
this is an array of key/value pairs representing the primary key. The format of a Composite Key is an array of KeyValuePair objects and KeyValuePair objects simply have FieldName and Value properties. In most cases entities have single-valued primary keys but this structure is here for complex entity types that have composite primary keys
Allows a component to register methods that can be called by the container.
Name of the method being registered
The method implementation
Callbacks a component can use.