...
Info |
---|
You can find the widget ID (which is |
As the Case of multiple widgets, same target host:
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('widet-id-value', 'showWidget')
}
}; |
As a result, you should get the following:
...