Reloading Cell Values

If a column has the Reload Program and Reload Function settings defined, this API calls that method to reload the cell value. A single call can be used to update the values of multiple columns using a single AJAX call.

This API is often invoked from the JavaScript functions defined by the onFocusHandler or onChangeHandler settings for the structure browser column. Each column to be udpated has a Reload Program/Function defined.

This API only reloads data for the cell currently being modified.

emxEditableTable.reloadCell

This API requires this input argument:


  • colName1, colName2, colName3, .... A comma-separated list of the column name(s) of the cells to be updated.

Example:

reloadCell("state 1, state 2, state 3, state 4")

This example invokes the reloadCell("state 1, state 2, state 3, state 4") from On Change Handler of column "country". This function loads new range values for each of the listed columns.