We use cookies to serve our customers and website visitors in the best possible way. Cookies are used for the proper functioning of the website and for improving the user experience, monitoring visitor traffic and marketing purposes. By continuing to browse the site, you agree to our use of cookies. You can read more about cookies here.
com.vaadin.flow.component.spreadsheet.rpc.
Interface SpreadsheetClientRpc
-
public interface SpreadsheetClientRpc
-
-
Method Summary
All Methods Modifier and Type Method Description void
cellsUpdated(ArrayList<CellData> updatedCellData)
void
editCellComment(int col, int row)
void
invalidCellAddress()
void
refreshCellStyles()
void
setSelectedCellAndRange(String name, int col, int row, int c1, int c2, int r1, int r2, boolean scroll)
Updates the selected cell and painted range.
void
showActions(ArrayList<SpreadsheetActionDetails> actionDetails)
The String arrays contain the caption and the icon resource key.
void
showSelectedCell(String name, int col, int row, String cellValue, boolean function, boolean locked, boolean initialSelection)
void
updateBottomLeftCellValues(ArrayList<CellData> cellData)
void
updateBottomRightCellValues(ArrayList<CellData> cellData)
void
updateFormulaBar(String possibleName, int col, int row)
void
updateTopLeftCellValues(ArrayList<CellData> cellData)
void
updateTopRightCellValues(ArrayList<CellData> cellData)
-
-
-
Method Detail
-
updateFormulaBar
void updateFormulaBar(String possibleName, int col, int row)
Parameters:
col
- Selected cell's column. 1-basedrow
- Selected cell's row. 1-based
-
invalidCellAddress
void invalidCellAddress()
-
showSelectedCell
void showSelectedCell(String name, int col, int row, String cellValue, boolean function, boolean locked, boolean initialSelection)
-
showActions
void showActions(ArrayList<SpreadsheetActionDetails> actionDetails)
The String arrays contain the caption and the icon resource key.
Parameters:
actionDetails
-
-
setSelectedCellAndRange
void setSelectedCellAndRange(String name, int col, int row, int c1, int c2, int r1, int r2, boolean scroll)
Updates the selected cell and painted range. Displays the selected cell value. Indexes 1-based.
-
refreshCellStyles
void refreshCellStyles()
-
editCellComment
void editCellComment(int col, int row)
-
-