JumpEntity

Adds a hyperlink that opens the summary screen of an entity record.

The entity must be relevant to the list. The column of the entity must exist within the view or table on which the list is based. For example, it's possible to jump to an Opportunity from an Opportunity list but not from a Case list.

Values

This property can take one of the following values:

  • company
  • person
  • communication
  • case
  • address
  • library
  • notes
  • custom table
Examples

PersonList = CRM.GetBlock("persongrid");
GridCol = PersonList.GetGridCol("pers_firstname");
GridCol.JumpEntity = "person";
CRM.AddContent(PersonList.Execute(''));
Response.Write(CRM.GetPage());

Adds a hyperlink to the pers_firstname field. When a user clicks the hyperlink, the person's summary screen opens.