Core: Difference between revisions

From MobileX for SageCRM
(Created page with "At the core is the object CRMConnectionHelper and this exposes the internal proxy which in turn exposes core methods EG var userId = CRMConnectionHelper.MainProx...")
 
(No difference)

Latest revision as of 11:12, 3 August 2016

At the core is the object

 CRMConnectionHelper

and this exposes the internal proxy which in turn exposes core methods

 EG
   var userId = CRMConnectionHelper.MainProxy.getUserId();


var res = CRMConnectionHelper.MainProxy.addToMyBookMarks(params.EntityName, params.EntityId);
res = CRMConnectionHelper.MainProxy.IsInMyBookMarks(params.EntityName, params.EntityId);
var res = CRMConnectionHelper.MainProxy.removeFromMyBookMarks(params.EntityName, params.EntityId);

var userId = CRMConnectionHelper.MainProxy.getUserId();