|  | DialogSetGridRows Method (String, String, Table, Int32, IDictionaryString, Int32, IDictionaryString, CrmField) | 
            Set the row values for a grid.
            
 
Namespace: Blackbaud.UAT.Core.Crm.DialogsAssembly: Blackbaud.UAT.Core (in Blackbaud.UAT.Core.dll) Version: 1.0.1304.1 (1.0.1304.1)
 Syntax
Syntaxpublic static void SetGridRows(
	string dialogId,
	string gridId,
	Table rows,
	int startingRowIndex,
	IDictionary<string, int> columnCaptionToIndex,
	IDictionary<string, CrmField> supportedFields
)
Public Shared Sub SetGridRows ( 
	dialogId As String,
	gridId As String,
	rows As Table,
	startingRowIndex As Integer,
	columnCaptionToIndex As IDictionary(Of String, Integer),
	supportedFields As IDictionary(Of String, CrmField)
)
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
See Also