...
To view the Kbot UI script, go to this page (replace
ven03673
in this link with your host)search forx_konve_kbot_test.KonversoWebChatWidget
in ServiceNow.To learn more about building custom widgets, view the official ServiceNow documentation.
...
Hiding the default button
1. In your ServiceNow environment, open the KonversoWidgetSettingsUtils
object (replace ven03673
in this link with your host).
2. Add the following string:
Code Block |
---|
buttonInvisible: true |
...
3. Save and apply the changes.
To hide the default button, select the Hide button checkbox in the widget creation tool.
...
Info |
---|
To view the complete set of widget options, see this page. |
...
Info |
---|
You can find the widget ID (which is |
As the a result, you should get the following:
...
...
Save the widget.
Case of multiple widgets, same target host:
You need to ensure your two init functions:
Code Block |
---|
Kbot.get().Widgets.initRemoteConfig('widget-id-value-1')
Kbot.get().Widgets.initRemoteConfig('widget-id-value-2') |
All you need to to have two distinct client scripts, each pointing to a different widget id.
Code Block |
---|
api.controller=function() {
/* widget controller */
var c = this;
c.showKbotWidget = function() {
Kbot.get().Widgets.execute('widget-id-value-2', 'showWidget')
}
}; |
Adding the widget to a portal
...