JumpAction
Specifies the jump action for the CustomActionFile property.
Example
Copy
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. The JumpAction value specifies the action to perform. In this case, it is custompage (430) .