Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 4 Next »

This method sets the data value of a specific field in a specific row of a grid.

This method only works with Rich Display File development where RPG code is used to populate the grid.  It does not work with data-bound grids or with grids rendered by Genie. 

Parameters:

  • rowNum - the row number to set the value in; when using events such as onrowclick, onrowdblclick, onrowmouseover, and onrowmouseout, the row variable is automatically passed into the event and can be used as the parameter to this method
  • fieldName - the field name as defined in the subfile record format
  • value - the value to set in the bound field

Example:

The following expression sets the customer number to 1 in the row that was clicked:

getObj("Grid1").grid.setDataValue(row, "CUSTID", 1);
  • No labels