Fields for Connect Desktop Integration (JavaScript API)
Content
Hello,
I reviewed the Connect Desktop Integration (JavaScript API) docs and found, nothing about field labels for this API. Where can I find a list of all the field labels for these two supported options?
window.external.Contact
window.external.Incident
Thanks
Justin
Version
Nov 2014Code Snippet
/* popIncident() Populates the Incident fields from the current Incident. */ function popIncident() { var c = window.external.Incident; if (i.i_id == 0) { alert("null incident"); return; } // set the incident_id fields data.incident.value = i.i_id; // set the refno fields data.refno.value = i.ref_no; }
0