Interface IMobileListBehavior
Mobile functionality provided for SAPUI5 lists. See Mobile
public interface IMobileListBehavior
Properties
Items
All items in the list.
ReadOnlyCollection<IMobileListItem> Items { get; }
Property Value
SelectedItems
Selected items in the list.
ReadOnlyCollection<IMobileListItem> SelectedItems { get; }
Property Value
Methods
Delete(IListItem)
Deletes the specified item from the list.
void Delete(IListItem item)
Parameters
Delete(string)
Deletes the specified item from the list.
void Delete(string item)
Parameters
itemstringThe name of the item to delete
Delete(uint)
Deletes the specified item from the list.
void Delete(uint itemIndex)
Parameters
itemIndexuintThe index of the item to delete
GetItem(string)
Returns an item with the given text.
IMobileListItem GetItem(string text)
Parameters
textstringThe text of the specified item.
Returns
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
SingleSelect(string)
Selects the radio button adjacent to the list item.
void SingleSelect(string item)
Parameters
itemstringThe name of the radio button to select.
SingleSelect(uint)
Selects the radio button adjacent to the list item.
void SingleSelect(uint itemIndex)
Parameters
itemIndexuintThe index of the radio button to select.