Setting Cell Value by Row ID

This API sets the actual and display values of the cell identified by the row ID and column name.

emxEditableTable.setCellValueByRowId

This API requires these input arguments:


  • rowId. The row ID of the needed cell.
  • colName. The column name of the needed cell.
  • cellValue. The actual value of the cell to be stored in the database.
  • cellDisplayValue. The value to be shown in the UI for the cell.
  • isRefreshView. A boolean value that when true (the default), refreshes the structure browser page.

Example:

Var rowId = [0,1];
Var colName = Units
Var cellValue = U1,U2,U3;
Var cellDisplayValue = "U1 - U3";
Var isRefreshView = true;
emxEditableTable.setCellValueByRowId(rowId,colName,cellValue, 
cellDisplayValue,isRefreshView)

This example sets the value for the Units column of row [0,1].