CustomIdField

Allows a value to be passed to the custom file when the corresponding column is selected. The value is passed to the query string in the following form:

<FieldName> = <Value>

This property is only applicable to columns for which CustomActionFileis set.

Values

Name of any field in the view for the list.

Examples

list = CRM.GetBlock('CompanyGrid');
g = list.GetGridCol('comp_name');
g.JumpAction = 430;
g.CustomIdField = 'comp_companyid';
g.CustomActionFile = 'test.asp';
CRM.AddContent(list.Execute("comp_name like 'o%'"));
Response.Write(CRM.GetPage());

Sets the ID field for the custom jump to the comp_companyid field.