JumpKey

Specifies the dominant key of the entity to open.

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

Adds a new column (pers_firstname) to the list. Sorts entries in the pers_firstname column in the descending order. The JumpKey value specifies the dominant key (entity). In this example, it is Company (1).