Click or drag to resize
DialogSetGridRows Method (String, String, Table, Int32, IDictionaryString, Int32, IDictionaryString, CrmField)
Set the row values for a grid.

Namespace: Blackbaud.UAT.Core.Crm.Dialogs
Assembly: Blackbaud.UAT.Core (in Blackbaud.UAT.Core.dll) Version: 1.0.1304.1 (1.0.1304.1)
Syntax
public static void SetGridRows(
	string dialogId,
	string gridId,
	Table rows,
	int startingRowIndex,
	IDictionary<string, int> columnCaptionToIndex,
	IDictionary<string, CrmField> supportedFields
)

Parameters

dialogId
Type: SystemString
The unique id of the dialog. i.e. 'EventTaskAddForm'
gridId
Type: SystemString
The unique id of the grid - i.e. '_REMINDERS_'
rows
Type: Table
Table where each TableRow a row to set. Each TableRow is a mapping of the column captions to a single row's desired values.
startingRowIndex
Type: SystemInt32
The row index to start adding rows from. The first row's index is represented as 1.
columnCaptionToIndex
Type: System.Collections.GenericIDictionaryString, Int32
Mapping of the column captions to their DOM TR index.
supportedFields
Type: System.Collections.GenericIDictionaryString, CrmField
Mapping of the supported field captions to a CrmField object encapsulating all relevant variables needed to set the field's value.
See Also