CustomActionFile
Hyperlinks a column to an ASP file.
When a user clicks an item in the column, the ASP file is called up, passing in the value of the field set in the CustomIdField property in the query string. This property is only applicable when the JumpAction property is set to 430.
Values
Name of the ASP file.
Examples
list = CRM.GetBlock('CompanyGrid');
g = list.GetGridCol('comp_name');
g.JumpAction = 430;
g.CustomIdField = 'comp_companyid';
g.CustomActionFile = 'invoices.asp';
CRM.AddContent(list.Execute("comp_name like 'eu'"));
Response.Write(CRM.GetPage());
Sets the custom jump to the invoices ASP page.
Note that when you reference a value from the QueryString (or a form field), always reference the value rather than the object itself, for example:
ThisComp = Request.QueryString('comp_companyid');
or
a = Request.QueryString("field");
If there's a possibility of a QueryString field being duplicated, test its length and reassign the variable.