Package com.hp.lft.sdk.sap.ui5
Interface DesktopTableBehavior
public interface DesktopTableBehavior
Desktop functionality provided for tables. See 
Table.getDesktop().- 
Method SummaryModifier and TypeMethodDescriptionvoidclickColumnHeader(int columnNumber) Clicks the header of the specified column according to its index.voidclickColumnHeader(String columnName) Clicks the header of the specified column according to its name.voidScrolls the table to the first page.intReturns the current page number in this table.voidlastPage()Scrolls the table to the last page.voidmoveColumn(int columnNumber, int toColumnNumber) Moves the specified column (by index) to the specified column position (by index).voidmoveColumn(int toColumnNumber, String column) Moves the specified column (by name) to the specified column position (by index).voidmoveColumn(String toColumn, int columnNumber) Moves the specified column (by index) to the specified new position (by name).voidmoveColumn(String column, String toColumn) Moves the specified column (by name) to the specified position (by name).voidnavigateToPage(int pageNumber) Scrolls the table to the specified page.voidnextPage()Scrolls the table to the next page.voidopenMenu(int columnNumber) Clicks the column header (according to its index) to open the associated menu.voidClicks the column header (by name) to open the associated menu.voidScrolls the table to the previous page.voidresizeColumn(int width, int columnNmber) Resizes the specified column (by index) to the specified width.voidresizeColumn(String column, int width) Resizes the specified column (according to its name) to the specified width.
- 
Method Details- 
getCurrentPageReturns the current page number in this table.- Returns:
- The current page number in this table.
- Throws:
- GeneralLeanFtException- if error occurs during execution
 
- 
moveColumnMoves the specified column (by index) to the specified column position (by index).- Parameters:
- columnNumber- the index of the column to move (1-based).
- toColumnNumber- the index of the column to move to (1-based).
- Throws:
- GeneralLeanFtException- if error occurs during execution
 
- 
moveColumnMoves the specified column (by name) to the specified position (by name).- Parameters:
- column- the name of the column to move.
- toColumn- the name of the column to move to.
- Throws:
- GeneralLeanFtException- if error occurs during execution
 
- 
moveColumnMoves the specified column (by index) to the specified new position (by name).- Parameters:
- toColumn- the name of column to move to.
- columnNumber- the number of the column to move (1-based).
- Throws:
- GeneralLeanFtException- if error occurs during execution
 
- 
moveColumnMoves the specified column (by name) to the specified column position (by index).- Parameters:
- toColumnNumber- the number of the column to move (1-based).
- column- the name of the column to move.
- Throws:
- GeneralLeanFtException- if error occurs during execution
 
- 
resizeColumnResizes the specified column (by index) to the specified width.- Parameters:
- width- the width to resize to.
- columnNmber- the index of the column to resize.
- Throws:
- GeneralLeanFtException- if error occurs during execution
 
- 
resizeColumnResizes the specified column (according to its name) to the specified width.- Parameters:
- column- the name of the column to resize.
- width- the width to resize to.
- Throws:
- GeneralLeanFtException- if error occurs during execution
 
- 
openMenuClicks the column header (according to its index) to open the associated menu.- Parameters:
- columnNumber- the column number to click (1-based).
- Throws:
- GeneralLeanFtException- if error occurs during execution
 
- 
openMenuClicks the column header (by name) to open the associated menu.- Parameters:
- columnName- the column name to click.
- Throws:
- GeneralLeanFtException- if error occurs during execution
 
- 
nextPageScrolls the table to the next page.- Throws:
- GeneralLeanFtException- if error occurs during execution
 
- 
previousPageScrolls the table to the previous page.- Throws:
- GeneralLeanFtException- if error occurs during execution
 
- 
firstPageScrolls the table to the first page.- Throws:
- GeneralLeanFtException- if error occurs during execution
 
- 
lastPageScrolls the table to the last page.- Throws:
- GeneralLeanFtException- if error occurs during execution
 
- 
clickColumnHeaderClicks the header of the specified column according to its index.- Parameters:
- columnNumber- the index of the column to click (1-based).
- Throws:
- GeneralLeanFtException- if error occurs during execution
 
- 
clickColumnHeaderClicks the header of the specified column according to its name.- Parameters:
- columnName- the name of the column to click.
- Throws:
- GeneralLeanFtException- if error occurs during execution
 
 
-