I'm pretty new to ConverseJs, so please be patient with me.I have set up a Ejabberd server, and can connect to it happily with the ConverseJs plugin.
However, when it comes to clicking any of the options that would display a modal, I am presented…
I am using prebind authentication in converse.js. When I initialize converse, I receive the error:
"FATAL: TypeError: Cannot read property 'insertAdjacentElement' of null"
The error can be traced back to converse-register.js:57, where…
I cannot get converse.js web client to work in embedded mode. It works okay in fullscreen or overlayed mode (just change the view_mode attribute).
My code below works perfectly well in fullscreen mode, but renders a blank screen as soon as I set…
I have an mobile web based application where I want the user to only use a chat window between them and another person.
I have javascript button that opens a chat window but it does it through the converse.initalize method with all the configuration…
I want to enable passwordless authentication in Converse.js, using CA signed certificates, but I am having troubles with it. Here is what I've done:
Added the CA in the truststore for OpenFire;
Added the OpenFire certificate in its…
Is it possible to receive custom stanzas in converse.js?
I tried to listen to incoming messages:
converse.plugins.add('dummy', {
initialize: function() {
var _converse = this._converse;
_converse.api.listen.on('message',…
sorry to bother anyone,but i really need help for this,i want to retrieve chat from database(which i already ask this question before),but i try to googling and read all the documentation,and i assumed that i have found the solution,i read the…
The play_sounds option in ConverseJS (version 3.2) allows "playing a notification sound when you receive a personal message or when your nickname is mentioned in a chat room" (see here). Is there a way to play sound for every new message in the muc…
How I can translate incoming message?
I have made a plugin that listen on messageAdded event but I can't see the incoming message translated.
This is my code
chat.plugins.add('translate', {
initialize: function () {
var _converse…
(Sorry for my english)
Before i'm using converse js 2.0.4, but now i want update converse js to 3.0.2
I read documentation, but i don't understand how i can write and use my methods for chat.
before i make it easy
converse.listen.on('message',…
I want to implement XMPP chat functionality in my system using converse.js for client side chat interface. but when i use converse.js in my layout page, browser showing me error like
$(...).datetimepicker is not a function
$(...).dataTable is not a…
I am using openfire as an XMPP server and using converse as client library. I want to send a chat message from my chat window to openfire. For this I want to send the text to a converse method which will send the message to the XMPP server.
I am…
I am using converse as a client with openfire and I want to maintain session with the openfire using web sockets and without specifying the user's password in the converse settings file. For this I wish to use prebind_url so that I can maintain…