Create Your First Widget

Table of Contents

  1. Widget Creation

  2. Register Listeners

 

Using the widgets feature, you can directly embed UI components in a CRM and use the data form a third-party application to perform actions as per requirement.

Creation of a Widget

Once the Zoho CLI is installed, you can create your own widget.

Step 1:

Once the CLI is installed, run this command to create a new project. $ zet init

Step 2:

Select a Zoho service and give a Name for the widget which you want to create. In this case, select Zoho CRM as the service.The sample project will be created in the respective folder directory.

Step 3:

To open the sample project, run the following command: cd {Project_name}Now, you can start desiging and including the UI components for the Widget.

Note:

You can find the HTML file for the widget in the app folder, named "widget.html" by default.

Step 4:

The widget.html file contains the structure, design and components of the Widget. To use the Zoho CRM APIs in the widget, you can use the API helpers provided in the JS SDK.

Note:

You can add additional designs and functionality to the widget by creating the necessary js files and stylesheets (optional).

Step 5:

Once you have created the widget, you can host the widget locally and test.

To host the widget locally, you need to use the following command. $ zet run

Here is how you can host the widget.

Note:

  • In order to test your widget within CRM context, you can create a widget with External Hosting and specify the URL that the command $ zet run gives as the Base URL in either production or sandbox account.


     

  • Locally hosted widgets can be tested on that machine only. Refresh the CRM page to view latest changes made to the widget.

     

Step 6:

Once you've tested the widget and find no problems with it, you can package the widget and host it internally or externally.

Register Listeners

And in some cases where contextual data should be passed to the widget, you need to register for the appropriate events. Registering an event means defining a function that will be executed when a certain event is triggered by your application. Event can be something that the browser does or something a user does. Following is an example of event.

  • PageLoad - Triggered when ever an entity Page (Detail page) is loaded.

The sample code given below can be used to subscribe to a PageLoad event in your widget: ZOHO.embeddedApp.on("PageLoad",function(data){ console.log(data); })

The below code snippet is used to initialize your widget and start listening to events in your CRM application: ZOHO.embeddedApp.init()

ZOHO.CRM.CONFIG.getCurrentUser() is the API that returns the user infomation such as name, Id, role, profile etc.The code to invoke an API is

ZOHO.CRM.CONFIG.getCurrentUser().then(function(data){
                            console.log(data);
                        });

 

Note:

You can find the API helper, JS SDK and some sample widgets in our Github page.