Namespace: Record

Record

Methods

staticZOHO.CRM.UI.Record.open(data){Promise}

Open DetailPage of the specified Record
Name Type Description
data object Configuration Object
Name Type Description
Entity String SysRefName of the module.
RecordID String RecordID to open
Returns:
Type Description
Promise resolved with true | false
Example
ZOHO.CRM.UI.Record.open({Entity:"Leads",RecordID:"1000000036062"})
.then(function(data){
    console.log(data)
})