Namespace: Setting

.UI. Setting

Methods

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

Opens specified settingPage
Name Type Description
data object Configuration Object
Name Type Description
APIName String APIName of the widget or url path.
webTabMessage String Custom message to be passed to the widget
Returns:
Type Description
Promise resolved with true | false
Example
var data = {
 "APIName" : "widgetname__settingname",
 "webTabMessage": {
       "xxxx":"13257389",
       "yyyy":"abcjds",
       "zzzz":"@*&#*$",
  }
}
ZOHO.CRM.UI.Setting.open(data).then(function(response){
    console.log(response)
})