and used this.myPlug.command('WebChat.open', {}) to open my webchat window. Webchat is working fine.
Now instead of hardcoding transport.dataURL, transport.type, transport.endpoint, transport.stream, transport.headers['x-api-key'], userData['jwt-token'] in widget.config.js, I am triggering an API call to the application backend to fetch all these values and setting it to widget.config.js using the code given delow,
After this change, in most of the time webchat option is not loading properly, the entire chat window is covered with an overlay(class:cx-smokescreen).
Thank you soo much for your response. I have made changes according to the link you shared. I have moved WebChat.open command to onReady() function. First time its working well. After cancelling/closing first chat, if I am clicking on chat button(chatButtonClicked()) again, nothing is happening. Can you please help me on this?
The widgets libraries and plugins will be loaded and started when you first execute your chatButtonClicked function (window._genesys.widgets configure and window.CXBus.loadPlugin('widgets-core');).
"After cancelling/closing first chat", the widgets are still there (loaded and running).
So you must only call the CXBus.command( 'WebChat.open', ...) method - don't call CXBus.loadPlugin('widgets-core'); again.
NB: You can use CXBus to call your command. It will be available as a global variable (or sometimes as window.CXBus depending on web framework used). CXBus will "exist" when onReady is triggered (the first time), and when you invoke your chatButtonClick function the second time.
Changing widgets configuration (window._genesys.widgets) will not have any effect and will be disregarded (the configuration is already loaded by Genesys Widgets).
And onReady will not be triggered, because widgets are already loaded, running and therefore ready.
Another comment. You are possibly not on the right forum.
This forum is for Genesys Cloud (formerly known as PureCloud).
If this is indeed the platform you are using, then, the correct link to Genesys Widgets guides when used with Genesys Cloud are the following (the link you included in your first post is for Genesys Widgets on Engage platform): Widgets with Genesys Cloud App Plugin WebChat Plugin WebChatService Plugin