The control provides a set of properties for text, sender information, time stamp. Beginning with release 1.23 the new feature expand / collapse was introduced, which uses the property maxCharacters. Beginning with release 1.44, sap.m.FormattedText was introduced which allows html formatted text to be displayed
Constructor for a new FeedListItem.
Accepts an object literal mSettings
that defines initial property values, aggregated and associated objects as well as event handlers. See sap.ui.base.ManagedObject#constructor for a general description of the syntax of the settings object.
new sap.m.FeedListItem(sId?, mSettings?)
Param | Type | Default Value | Description |
---|---|---|---|
sId? | string | id for the new control, generated automatically if no id is given |
|
mSettings? | object | initial settings for the new control |
Name | Type | Default Value | Description |
---|---|---|---|
activeIcon | sap.ui.core.URI | Icon displayed when the list item is active. Visibility: public |
|
convertLinksToAnchorTags | sap.m.LinkConversion | None | Determines whether strings that appear to be links will be converted to HTML anchor tags, and what are the criteria for recognizing them. |
convertedLinksDefaultTarget | string | _blank | Determines the target attribute of the generated HTML anchor tags. Note: Applicable only if ConvertLinksToAnchorTags property is used with a value other than sap.m.LinkConversion.None. Options are the standard values for the target attribute of the HTML anchor tag: _self, _top, _blank, _parent, _search. |
icon | sap.ui.core.URI | Icon to be displayed as graphical element within the FeedListItem. This can be an image or an icon from the icon font. If no icon is provided, a default person-placeholder icon is displayed. Icon is only shown if showIcon = true. Visibility: public |
|
iconActive | boolean | true | If true, icon is a link, which will fire 'iconPress' events. If false, icon is normal image Visibility: public |
iconDensityAware | boolean | true | By default, this is set to true but then one or more requests are sent trying to get the density perfect version of image if this version of image doesn't exist on the server. If bandwidth is the key for the application, set this value to false. Deprecated as of version 1.88. Image is replaced by avatar. Visibility: public |
iconDisplayShape | sap.m.AvatarShape | Circle | Defines the shape of the icon. |
iconInitials | string | empty string | Defines the initials of the icon. |
iconSize | sap.m.AvatarSize | S | Defines the size of the icon. |
info | string | The Info text. Visibility: public |
|
lessLabel | string | Customizable text for the "LESS" link at the end of the feed list item. |
|
maxCharacters | int | The expand and collapse feature is set by default and uses 300 characters on mobile devices and 500 characters on desktops as limits. Based on these values, the text of the FeedListItem is collapsed once text reaches these limits. In this case, only the specified number of characters is displayed. By clicking on the text link More, the entire text can be displayed. The text link Less collapses the text. The application is able to set the value to its needs. Visibility: public |
|
moreLabel | string | Customizable text for the "MORE" link at the end of the feed list item. |
|
sender | string | Sender of the chunk Visibility: public |
|
senderActive | boolean | true | If true, sender string is a link, which will fire 'senderPress' events. If false, sender is normal text. Visibility: public |
showIcon | boolean | true | If set to "true" (default), icons will be displayed, if set to false icons are hidden Visibility: public |
text | string | The FeedListItem text. It supports html formatted tags as described in the documentation of sap.m.FormattedText Visibility: public |
|
timestamp | string | This chunks timestamp Visibility: public |
Name | Type | Default Value | Description |
---|---|---|---|
counter | int | Defines the counter value of the list items. Visibility: public |
|
highlight | string | None | Defines the highlight state of the list items. Valid values for the Accessibility support is provided through the associated highlightText property. If the |
highlightText | string | empty string | Defines the semantics of the highlight property for accessibility purposes. |
navigated | boolean | false | The navigated state of the list item. If set to |
selected | boolean | false | Defines the selected state of the list items. Note: Binding the |
type | sap.m.ListType | Inactive | Defines the visual indication and behavior of the list items, e.g. |
unread | boolean | false | Activates the unread indicator for the list item, if set to |
visible | boolean | true | Whether the control should be visible on the screen. If set to false, a placeholder is rendered instead of the real control. Visibility: public |
Default Aggregation: actions
Name | Cardinality | Type | Description |
---|---|---|---|
_actionButton | 0..1 | sap.m.Button |
Hidden aggregation that displays the action button. |
_actionSheet | 0..1 | sap.m.ActionSheet |
Hidden aggregation that contains the actions. |
_avatar | 0..1 | sap.m.Avatar |
Defines the inner avatar control. |
_text | 0..1 | sap.m.FormattedText |
Hidden aggregation which contains the text value |
actions (default) | 0..n | sap.m.FeedListItemAction |
Contains elements that are displayed in the action sheet. |
Event | Description |
---|---|
iconPress |
Event is fired when the icon is pressed. |
senderPress |
Event is fired when name of the sender is pressed. |
Event is fired when the icon is pressed.
Param | Type | Description |
---|---|---|
oControlEvent | sap.ui.base.Event | |
getSource | sap.ui.base.EventProvider | |
getParameters | object | |
domRef | string |
Dom reference of the feed item's icon to be used for positioning. |
getDomRef | function |
Function to retrieve the DOM reference for the |
Event is fired when name of the sender is pressed.
Param | Type | Description |
---|---|---|
oControlEvent | sap.ui.base.Event | |
getSource | sap.ui.base.EventProvider | |
getParameters | object | |
domRef | string |
Dom reference of the feed item's sender string to be used for positioning. |
getDomRef | function |
Function to retrieve the DOM reference for the |
Method | Description |
---|---|
addAction |
Adds some action to the aggregation actions. |
attachIconPress |
Attaches event handler When called, the context of the event handler (its Event is fired when the icon is pressed. |
attachSenderPress |
Attaches event handler When called, the context of the event handler (its Event is fired when name of the sender is pressed. |
destroyActions |
Destroys all the actions in the aggregation actions. |
detachIconPress |
Detaches event handler The passed function and listener object must match the ones used for event registration. |
detachSenderPress |
Detaches event handler The passed function and listener object must match the ones used for event registration. |
sap.m.FeedListItem.extend |
Creates a new subclass of class sap.m.FeedListItem with name
|
fireIconPress |
Fires event iconPress to attached listeners. |
fireSenderPress |
Fires event senderPress to attached listeners. |
getActions |
Gets content of aggregation actions. Contains elements that are displayed in the action sheet. |
getActiveIcon |
Gets current value of property activeIcon. Icon displayed when the list item is active. |
getConvertedLinksDefaultTarget |
Gets current value of property convertedLinksDefaultTarget. Determines the target attribute of the generated HTML anchor tags. Note: Applicable only if ConvertLinksToAnchorTags property is used with a value other than sap.m.LinkConversion.None. Options are the standard values for the target attribute of the HTML anchor tag: _self, _top, _blank, _parent, _search. Default value is |
getConvertLinksToAnchorTags |
Gets current value of property convertLinksToAnchorTags. Determines whether strings that appear to be links will be converted to HTML anchor tags, and what are the criteria for recognizing them. Default value is |
getIcon |
Gets current value of property icon. Icon to be displayed as graphical element within the FeedListItem. This can be an image or an icon from the icon font. If no icon is provided, a default person-placeholder icon is displayed. Icon is only shown if showIcon = true. |
getIconActive |
Gets current value of property iconActive. If true, icon is a link, which will fire 'iconPress' events. If false, icon is normal image Default value is |
getIconDensityAware |
Gets current value of property iconDensityAware. By default, this is set to true but then one or more requests are sent trying to get the density perfect version of image if this version of image doesn't exist on the server. If bandwidth is the key for the application, set this value to false. Deprecated as of version 1.88. Image is replaced by avatar. Default value is |
getIconDisplayShape |
Gets current value of property iconDisplayShape. Defines the shape of the icon. Default value is |
getIconInitials |
Gets current value of property iconInitials. Defines the initials of the icon. Default value is |
getIconSize |
Gets current value of property iconSize. Defines the size of the icon. Default value is |
getInfo |
Gets current value of property info. The Info text. |
getLessLabel |
Gets current value of property lessLabel. Customizable text for the "LESS" link at the end of the feed list item. |
getMaxCharacters |
Gets current value of property maxCharacters. The expand and collapse feature is set by default and uses 300 characters on mobile devices and 500 characters on desktops as limits. Based on these values, the text of the FeedListItem is collapsed once text reaches these limits. In this case, only the specified number of characters is displayed. By clicking on the text link More, the entire text can be displayed. The text link Less collapses the text. The application is able to set the value to its needs. |
sap.m.FeedListItem.getMetadata |
Returns a metadata object for class sap.m.FeedListItem. |
getMoreLabel |
Gets current value of property moreLabel. Customizable text for the "MORE" link at the end of the feed list item. |
getSender |
Gets current value of property sender. Sender of the chunk |
getSenderActive |
Gets current value of property senderActive. If true, sender string is a link, which will fire 'senderPress' events. If false, sender is normal text. Default value is |
getShowIcon |
Gets current value of property showIcon. If set to "true" (default), icons will be displayed, if set to false icons are hidden Default value is |
getText |
Gets current value of property text. The FeedListItem text. It supports html formatted tags as described in the documentation of sap.m.FormattedText |
getTimestamp |
Gets current value of property timestamp. This chunks timestamp |
indexOfAction |
Checks for the provided |
insertAction |
Inserts a action into the aggregation actions. |
removeAction |
Removes a action from the aggregation actions. |
removeAllActions |
Removes all the controls from the aggregation actions. Additionally, it unregisters them from the hosting UIArea. |
setActiveIcon |
Sets a new value for property activeIcon. Icon displayed when the list item is active. When called with a value of |
setConvertedLinksDefaultTarget |
Sets a new value for property convertedLinksDefaultTarget. Determines the target attribute of the generated HTML anchor tags. Note: Applicable only if ConvertLinksToAnchorTags property is used with a value other than sap.m.LinkConversion.None. Options are the standard values for the target attribute of the HTML anchor tag: _self, _top, _blank, _parent, _search. When called with a value of Default value is |
setConvertLinksToAnchorTags |
Sets a new value for property convertLinksToAnchorTags. Determines whether strings that appear to be links will be converted to HTML anchor tags, and what are the criteria for recognizing them. When called with a value of Default value is |
setIcon |
Sets a new value for property icon. Icon to be displayed as graphical element within the FeedListItem. This can be an image or an icon from the icon font. If no icon is provided, a default person-placeholder icon is displayed. Icon is only shown if showIcon = true. When called with a value of |
setIconActive |
Sets a new value for property iconActive. If true, icon is a link, which will fire 'iconPress' events. If false, icon is normal image When called with a value of Default value is |
setIconDensityAware |
Sets a new value for property iconDensityAware. By default, this is set to true but then one or more requests are sent trying to get the density perfect version of image if this version of image doesn't exist on the server. If bandwidth is the key for the application, set this value to false. Deprecated as of version 1.88. Image is replaced by avatar. When called with a value of Default value is |
setIconDisplayShape |
Sets a new value for property iconDisplayShape. Defines the shape of the icon. When called with a value of Default value is |
setIconInitials |
Sets a new value for property iconInitials. Defines the initials of the icon. When called with a value of Default value is |
setIconSize |
Sets a new value for property iconSize. Defines the size of the icon. When called with a value of Default value is |
setInfo |
Sets a new value for property info. The Info text. When called with a value of |
setLessLabel |
Sets a new value for property lessLabel. Customizable text for the "LESS" link at the end of the feed list item. When called with a value of |
setMaxCharacters |
Sets a new value for property maxCharacters. The expand and collapse feature is set by default and uses 300 characters on mobile devices and 500 characters on desktops as limits. Based on these values, the text of the FeedListItem is collapsed once text reaches these limits. In this case, only the specified number of characters is displayed. By clicking on the text link More, the entire text can be displayed. The text link Less collapses the text. The application is able to set the value to its needs. When called with a value of |
setMoreLabel |
Sets a new value for property moreLabel. Customizable text for the "MORE" link at the end of the feed list item. When called with a value of |
setSender |
Sets a new value for property sender. Sender of the chunk When called with a value of |
setSenderActive |
Sets a new value for property senderActive. If true, sender string is a link, which will fire 'senderPress' events. If false, sender is normal text. When called with a value of Default value is |
setShowIcon |
Sets a new value for property showIcon. If set to "true" (default), icons will be displayed, if set to false icons are hidden When called with a value of Default value is |
setText |
Sets a new value for property text. The FeedListItem text. It supports html formatted tags as described in the documentation of sap.m.FormattedText When called with a value of |
setTimestamp |
Sets a new value for property timestamp. This chunks timestamp When called with a value of |
setType |
Redefinition of sap.m.ListItemBase.setType: type = "sap.m.ListType.Navigation" behaves like type = "sap.m.ListType.Active" for a FeedListItem |
Adds some action to the aggregation actions.
Param | Type | DefaultValue | Description |
---|---|---|---|
oAction | sap.m.FeedListItemAction |
The action to add; if empty, nothing is inserted |
Attaches event handler fnFunction
to the iconPress event of this sap.m.FeedListItem
.
When called, the context of the event handler (its this
) will be bound to oListener
if specified, otherwise it will be bound to this sap.m.FeedListItem
itself.
Event is fired when the icon is pressed.
Param | Type | DefaultValue | Description |
---|---|---|---|
oData | object |
An application-specific payload object that will be passed to the event handler along with the event object when firing the event |
|
fnFunction | function(sap.ui.base.Event) : void |
The function to be called when the event occurs |
|
oListener | object |
Context object to call the event handler with. Defaults to this |
Attaches event handler fnFunction
to the senderPress event of this sap.m.FeedListItem
.
When called, the context of the event handler (its this
) will be bound to oListener
if specified, otherwise it will be bound to this sap.m.FeedListItem
itself.
Event is fired when name of the sender is pressed.
Param | Type | DefaultValue | Description |
---|---|---|---|
oData | object |
An application-specific payload object that will be passed to the event handler along with the event object when firing the event |
|
fnFunction | function(sap.ui.base.Event) : void |
The function to be called when the event occurs |
|
oListener | object |
Context object to call the event handler with. Defaults to this |
Detaches event handler fnFunction
from the iconPress event of this sap.m.FeedListItem
.
The passed function and listener object must match the ones used for event registration.
Param | Type | DefaultValue | Description |
---|---|---|---|
fnFunction | function(sap.ui.base.Event) : void |
The function to be called, when the event occurs |
|
oListener | object |
Context object on which the given function had to be called |
Detaches event handler fnFunction
from the senderPress event of this sap.m.FeedListItem
.
The passed function and listener object must match the ones used for event registration.
Param | Type | DefaultValue | Description |
---|---|---|---|
fnFunction | function(sap.ui.base.Event) : void |
The function to be called, when the event occurs |
|
oListener | object |
Context object on which the given function had to be called |
Creates a new subclass of class sap.m.FeedListItem with name sClassName
and enriches it with the information contained in oClassInfo
.
oClassInfo
might contain the same kind of information as described in sap.m.ListItemBase.extend.
Param | Type | DefaultValue | Description |
---|---|---|---|
sClassName | string |
Name of the class being created |
|
oClassInfo | object |
Object literal with information about the class |
|
FNMetaImpl | function |
Constructor function for the metadata object; if not given, it defaults to the metadata implementation used by this class |
Fires event iconPress to attached listeners.
Param | Type | DefaultValue | Description |
---|---|---|---|
mParameters | object |
Parameters to pass along with the event |
|
domRef | string |
Dom reference of the feed item's icon to be used for positioning. |
|
getDomRef | function |
Function to retrieve the DOM reference for the |
Fires event senderPress to attached listeners.
Param | Type | DefaultValue | Description |
---|---|---|---|
mParameters | object |
Parameters to pass along with the event |
|
domRef | string |
Dom reference of the feed item's sender string to be used for positioning. |
|
getDomRef | function |
Function to retrieve the DOM reference for the |
Gets content of aggregation actions.
Contains elements that are displayed in the action sheet.
Gets current value of property activeIcon.
Icon displayed when the list item is active.
Gets current value of property convertedLinksDefaultTarget.
Determines the target attribute of the generated HTML anchor tags. Note: Applicable only if ConvertLinksToAnchorTags property is used with a value other than sap.m.LinkConversion.None. Options are the standard values for the target attribute of the HTML anchor tag: _self, _top, _blank, _parent, _search.
Default value is "_blank"
.
Gets current value of property convertLinksToAnchorTags.
Determines whether strings that appear to be links will be converted to HTML anchor tags, and what are the criteria for recognizing them.
Default value is None
.
Gets current value of property icon.
Icon to be displayed as graphical element within the FeedListItem. This can be an image or an icon from the icon font. If no icon is provided, a default person-placeholder icon is displayed. Icon is only shown if showIcon = true.
Gets current value of property iconActive.
If true, icon is a link, which will fire 'iconPress' events. If false, icon is normal image
Default value is true
.
Gets current value of property iconDensityAware.
By default, this is set to true but then one or more requests are sent trying to get the density perfect version of image if this version of image doesn't exist on the server.
If bandwidth is the key for the application, set this value to false.
Deprecated as of version 1.88. Image is replaced by avatar.
Default value is true
.
Gets current value of property iconDisplayShape.
Defines the shape of the icon.
Default value is Circle
.
Gets current value of property iconInitials.
Defines the initials of the icon.
Default value is empty string
.
Gets current value of property iconSize.
Defines the size of the icon.
Default value is S
.
Gets current value of property lessLabel.
Customizable text for the "LESS" link at the end of the feed list item.
Clicking the "LESS" link collapses the item, hiding the text that exceeds the allowed maximum number of characters.
Gets current value of property maxCharacters.
The expand and collapse feature is set by default and uses 300 characters on mobile devices and 500 characters on desktops as limits. Based on these values, the text of the FeedListItem is collapsed once text reaches these limits. In this case, only the specified number of characters is displayed. By clicking on the text link More, the entire text can be displayed. The text link Less collapses the text. The application is able to set the value to its needs.
Gets current value of property moreLabel.
Customizable text for the "MORE" link at the end of the feed list item.
When the maximum number of characters defined by the maxCharacters
property is exceeded and the text of the feed list item is collapsed, the "MORE" link can be used to expand the feed list item and show the rest of the text.
Gets current value of property senderActive.
If true, sender string is a link, which will fire 'senderPress' events. If false, sender is normal text.
Default value is true
.
Gets current value of property showIcon.
If set to "true" (default), icons will be displayed, if set to false icons are hidden
Default value is true
.
Gets current value of property text.
The FeedListItem text. It supports html formatted tags as described in the documentation of sap.m.FormattedText
Checks for the provided sap.m.FeedListItemAction
in the aggregation actions. and returns its index if found or -1 otherwise.
Param | Type | DefaultValue | Description |
---|---|---|---|
oAction | sap.m.FeedListItemAction |
The action whose index is looked for |
Inserts a action into the aggregation actions.
Param | Type | DefaultValue | Description |
---|---|---|---|
oAction | sap.m.FeedListItemAction |
The action to insert; if empty, nothing is inserted |
|
iIndex | int |
The |
Removes a action from the aggregation actions.
Param | Type | DefaultValue | Description |
---|---|---|---|
vAction | int string sap.m.FeedListItemAction |
The action to remove or its index or id |
Removes all the controls from the aggregation actions.
Additionally, it unregisters them from the hosting UIArea.
Sets a new value for property activeIcon.
Icon displayed when the list item is active.
When called with a value of null
or undefined
, the default value of the property will be restored.
Param | Type | DefaultValue | Description |
---|---|---|---|
sActiveIcon | sap.ui.core.URI |
New value for property |
Sets a new value for property convertedLinksDefaultTarget.
Determines the target attribute of the generated HTML anchor tags. Note: Applicable only if ConvertLinksToAnchorTags property is used with a value other than sap.m.LinkConversion.None. Options are the standard values for the target attribute of the HTML anchor tag: _self, _top, _blank, _parent, _search.
When called with a value of null
or undefined
, the default value of the property will be restored.
Default value is "_blank"
.
Param | Type | DefaultValue | Description |
---|---|---|---|
sConvertedLinksDefaultTarget | string | "_blank" |
New value for property |
Sets a new value for property convertLinksToAnchorTags.
Determines whether strings that appear to be links will be converted to HTML anchor tags, and what are the criteria for recognizing them.
When called with a value of null
or undefined
, the default value of the property will be restored.
Default value is None
.
Param | Type | DefaultValue | Description |
---|---|---|---|
sConvertLinksToAnchorTags | sap.m.LinkConversion | None |
New value for property |
Sets a new value for property icon.
Icon to be displayed as graphical element within the FeedListItem. This can be an image or an icon from the icon font. If no icon is provided, a default person-placeholder icon is displayed. Icon is only shown if showIcon = true.
When called with a value of null
or undefined
, the default value of the property will be restored.
Param | Type | DefaultValue | Description |
---|---|---|---|
sIcon | sap.ui.core.URI |
New value for property |
Sets a new value for property iconActive.
If true, icon is a link, which will fire 'iconPress' events. If false, icon is normal image
When called with a value of null
or undefined
, the default value of the property will be restored.
Default value is true
.
Param | Type | DefaultValue | Description |
---|---|---|---|
bIconActive | boolean | true |
New value for property |
Sets a new value for property iconDensityAware.
By default, this is set to true but then one or more requests are sent trying to get the density perfect version of image if this version of image doesn't exist on the server.
If bandwidth is the key for the application, set this value to false.
Deprecated as of version 1.88. Image is replaced by avatar.
When called with a value of null
or undefined
, the default value of the property will be restored.
Default value is true
.
Param | Type | DefaultValue | Description |
---|---|---|---|
bIconDensityAware | boolean | true |
New value for property |
Sets a new value for property iconDisplayShape.
Defines the shape of the icon.
When called with a value of null
or undefined
, the default value of the property will be restored.
Default value is Circle
.
Param | Type | DefaultValue | Description |
---|---|---|---|
sIconDisplayShape | sap.m.AvatarShape | Circle |
New value for property |
Sets a new value for property iconInitials.
Defines the initials of the icon.
When called with a value of null
or undefined
, the default value of the property will be restored.
Default value is empty string
.
Param | Type | DefaultValue | Description |
---|---|---|---|
sIconInitials | string | "" |
New value for property |
Sets a new value for property iconSize.
Defines the size of the icon.
When called with a value of null
or undefined
, the default value of the property will be restored.
Default value is S
.
Param | Type | DefaultValue | Description |
---|---|---|---|
sIconSize | sap.m.AvatarSize | S |
New value for property |
Sets a new value for property info.
The Info text.
When called with a value of null
or undefined
, the default value of the property will be restored.
Param | Type | DefaultValue | Description |
---|---|---|---|
sInfo | string |
New value for property |
Sets a new value for property lessLabel.
Customizable text for the "LESS" link at the end of the feed list item.
Clicking the "LESS" link collapses the item, hiding the text that exceeds the allowed maximum number of characters.
When called with a value of null
or undefined
, the default value of the property will be restored.
Param | Type | DefaultValue | Description |
---|---|---|---|
sLessLabel | string |
New value for property |
Sets a new value for property maxCharacters.
The expand and collapse feature is set by default and uses 300 characters on mobile devices and 500 characters on desktops as limits. Based on these values, the text of the FeedListItem is collapsed once text reaches these limits. In this case, only the specified number of characters is displayed. By clicking on the text link More, the entire text can be displayed. The text link Less collapses the text. The application is able to set the value to its needs.
When called with a value of null
or undefined
, the default value of the property will be restored.
Param | Type | DefaultValue | Description |
---|---|---|---|
iMaxCharacters | int |
New value for property |
Sets a new value for property moreLabel.
Customizable text for the "MORE" link at the end of the feed list item.
When the maximum number of characters defined by the maxCharacters
property is exceeded and the text of the feed list item is collapsed, the "MORE" link can be used to expand the feed list item and show the rest of the text.
When called with a value of null
or undefined
, the default value of the property will be restored.
Param | Type | DefaultValue | Description |
---|---|---|---|
sMoreLabel | string |
New value for property |
Sets a new value for property sender.
Sender of the chunk
When called with a value of null
or undefined
, the default value of the property will be restored.
Param | Type | DefaultValue | Description |
---|---|---|---|
sSender | string |
New value for property |
Sets a new value for property senderActive.
If true, sender string is a link, which will fire 'senderPress' events. If false, sender is normal text.
When called with a value of null
or undefined
, the default value of the property will be restored.
Default value is true
.
Param | Type | DefaultValue | Description |
---|---|---|---|
bSenderActive | boolean | true |
New value for property |
Sets a new value for property showIcon.
If set to "true" (default), icons will be displayed, if set to false icons are hidden
When called with a value of null
or undefined
, the default value of the property will be restored.
Default value is true
.
Param | Type | DefaultValue | Description |
---|---|---|---|
bShowIcon | boolean | true |
New value for property |
Sets a new value for property text.
The FeedListItem text. It supports html formatted tags as described in the documentation of sap.m.FormattedText
When called with a value of null
or undefined
, the default value of the property will be restored.
Param | Type | DefaultValue | Description |
---|---|---|---|
sText | string |
New value for property |
Sets a new value for property timestamp.
This chunks timestamp
When called with a value of null
or undefined
, the default value of the property will be restored.
Param | Type | DefaultValue | Description |
---|---|---|---|
sTimestamp | string |
New value for property |
Redefinition of sap.m.ListItemBase.setType: type = "sap.m.ListType.Navigation" behaves like type = "sap.m.ListType.Active" for a FeedListItem
Param | Type | DefaultValue | Description |
---|---|---|---|
type | sap.m.ListType |
new value for property type |