The Data Column name of the ID column in the Grid. This can be different than the ParameterName. It is good practice to hide this column from the grid display so users won’t edit the column.
The type of column. By default, this should be “Default” as this is the only type that CorasWorks supports.
The ID that will be sent to your connection and will help your connection understand which record should be updated in the database.
The parameter name that will be passed into the External Data Provider.
<?xml version="1.0" encoding="utf-8" ?>
<Grid>
<InsertRecordAction>
<Parameter>
<ParameterName>RequestID</ParameterName>
<ColumnName>ID</ColumnName>
<ColumnType>Default</ColumnType>
</Parameter>
</InsertRecordAction>
<EditRecordAction>
<Parameter>
<ParameterName>ContactEmail</ParameterName>
<ColumnName>Contact Email</ColumnName>
<ColumnType>Default</ColumnType>
</Parameter>
<Parameter>
<ParameterName>RequestID</ParameterName>
<ColumnName>ID</ColumnName>
<ColumnType>Default</ColumnType>
</Parameter>
</EditRecordAction>
<DeleteRecordAction>
<Parameter>
<ParameterName>RequestID</ParameterName>
<ColumnName>ID</ColumnName>
<ColumnType>Default</ColumnType>
</Parameter>
</DeleteRecordAction>
</Grid>
NOTE: Do not delete the DeleteRecordAction or NewRecordAction, these must be in the Config XML, even if the column names are incorrect.