Interface IDesktopTableBehavior
Desktop functionality provided for SAPUI5 tables. See Desktop
public interface IDesktopTableBehavior
Properties
CurrentPage
The current page number in this table.
uint CurrentPage { get; }
Property Value
Methods
ClickColumnHeader(string)
Clicks the header of the specified column according to its name.
void ClickColumnHeader(string columnName)
Parameters
columnNamestringthe column name to click.
ClickColumnHeader(uint)
Clicks the header of the specified column according to its index.
void ClickColumnHeader(uint columnNumber)
Parameters
columnNumberuintthe column number to click (1-based).
FirstPage()
Scrolls the table to the first page.
void FirstPage()
LastPage()
Scrolls the table to the last page.
void LastPage()
MoveColumn(string, string)
Moves the specified column to the specified column position.
void MoveColumn(string column, string toColumn)
Parameters
MoveColumn(string, uint)
Moves the specified column to the specified column position.
void MoveColumn(string column, uint toColumnNumber)
Parameters
columnstringthe name of the column to move.
toColumnNumberuintthe column number to move to (1-based).
MoveColumn(uint, string)
Moves the specified column to the specified column position.
void MoveColumn(uint columnNumber, string toColumn)
Parameters
columnNumberuintthe number of the column to move (1-based).
toColumnstringthe column to move to.
MoveColumn(uint, uint)
Moves the specified column to the specified column position.
void MoveColumn(uint columnNumber, uint toColumnNumber)
Parameters
columnNumberuintthe number of the column to move (1-based).
toColumnNumberuintthe number of the column to move to (1-based).
NavigateToPage(uint)
Scrolls the table to the specified page.
void NavigateToPage(uint pageNumber)
Parameters
pageNumberuintthe page number to scroll to
NextPage()
Scrolls the table to the next page.
void NextPage()
OpenMenu(string)
Clicks the column header (according to its name) to open the associated menu.
void OpenMenu(string columnName)
Parameters
columnNamestringthe column name to click.
OpenMenu(uint)
Clicks the column header (according to its index) to open the associated menu.
void OpenMenu(uint columnNumber)
Parameters
columnNumberuintthe column number to click (1-based).
PreviousPage()
Scrolls the table to the previous page.
void PreviousPage()
ResizeColumn(string, uint)
Resizes the specified column (according to its name) to the specified width.
void ResizeColumn(string column, uint width)
Parameters
ResizeColumn(uint, uint)
Resizes the specified column (according to its index) to the specified width.
void ResizeColumn(uint columnNumber, uint width)