Table of Contents

Interface IMobileListBehavior

Namespace
HP.LFT.SDK.SAP.UI5
Assembly
HP.LFT.SDK.dll

Mobile functionality provided for SAPUI5 lists. See Mobile

public interface IMobileListBehavior

Properties

Items

All items in the list.

ReadOnlyCollection<IMobileListItem> Items { get; }

Property Value

ReadOnlyCollection<IMobileListItem>

SelectedItems

Selected items in the list.

ReadOnlyCollection<IMobileListItem> SelectedItems { get; }

Property Value

ReadOnlyCollection<IMobileListItem>

Methods

Delete(IListItem)

Deletes the specified item from the list.

void Delete(IListItem item)

Parameters

item IListItem

IListItem item to delete

Delete(string)

Deletes the specified item from the list.

void Delete(string item)

Parameters

item string

The name of the item to delete

Delete(uint)

Deletes the specified item from the list.

void Delete(uint itemIndex)

Parameters

itemIndex uint

The index of the item to delete

GetItem(string)

Returns an item with the given text.

IMobileListItem GetItem(string text)

Parameters

text string

The text of the specified item.

Returns

IMobileListItem

More()

Clicks the More button to expand the list and show more list items.

void More()

SingleSelect(IListItem)

Selects the specified item in the list.

void SingleSelect(IListItem item)

Parameters

item IListItem

IListItem item to select.

SingleSelect(string)

Selects the radio button adjacent to the list item.

void SingleSelect(string item)

Parameters

item string

The name of the radio button to select.

SingleSelect(uint)

Selects the radio button adjacent to the list item.

void SingleSelect(uint itemIndex)

Parameters

itemIndex uint

The index of the radio button to select.