Interface IMobileListBehavior
Mobile functionality provided for SAPUI5 lists. See Mobile
Namespace: HP.LFT.SDK.SAP.UI5
Assembly: HP.LFT.SDK.dll
Syntax
public interface IMobileListBehavior
Properties
Items
All items in the list.
Declaration
ReadOnlyCollection<IMobileListItem> Items { get; }
Property Value
| Type | Description |
|---|---|
| ReadOnlyCollection<IMobileListItem> |
SelectedItems
Selected items in the list.
Declaration
ReadOnlyCollection<IMobileListItem> SelectedItems { get; }
Property Value
| Type | Description |
|---|---|
| ReadOnlyCollection<IMobileListItem> |
Methods
Delete(IListItem)
Deletes the specified item from the list.
Declaration
void Delete(IListItem item)
Parameters
| Type | Name | Description |
|---|---|---|
| IListItem | item | IListItem item to delete |
Delete(string)
Deletes the specified item from the list.
Declaration
void Delete(string item)
Parameters
| Type | Name | Description |
|---|---|---|
| string | item | The name of the item to delete |
Delete(uint)
Deletes the specified item from the list.
Declaration
void Delete(uint itemIndex)
Parameters
| Type | Name | Description |
|---|---|---|
| uint | itemIndex | The index of the item to delete |
GetItem(string)
Returns an item with the given text.
Declaration
IMobileListItem GetItem(string text)
Parameters
| Type | Name | Description |
|---|---|---|
| string | text | The text of the specified item. |
Returns
| Type | Description |
|---|---|
| IMobileListItem |
More()
Clicks the More button to expand the list and show more list items.
Declaration
void More()
SingleSelect(IListItem)
Selects the specified item in the list.
Declaration
void SingleSelect(IListItem item)
Parameters
| Type | Name | Description |
|---|---|---|
| IListItem | item | IListItem item to select. |
SingleSelect(string)
Selects the radio button adjacent to the list item.
Declaration
void SingleSelect(string item)
Parameters
| Type | Name | Description |
|---|---|---|
| string | item | The name of the radio button to select. |
SingleSelect(uint)
Selects the radio button adjacent to the list item.
Declaration
void SingleSelect(uint itemIndex)
Parameters
| Type | Name | Description |
|---|---|---|
| uint | itemIndex | The index of the radio button to select. |