Namespace: UI

UI

Namespaces

Dialer
Popup
Record
Widget

Methods

staticZOHO.CRM.UI.Resize(dimensions){Promise}

Resize Widget to the given dimensions
Name Type Description
dimensions Object Dimension of Dialer.
Name Type Description
height Integer Height in px
width Integer Width in px
Returns:
Type Description
Promise resolved with true | false
Example
ZOHO.CRM.UI.Resize({height:"200",width:"1000"}).then(function(data){
	console.log(data);
});

//prints 
True