Change text in active webix.message()

Hi all,
is there a way to change the text/contense of an active webix.message()?

instead of creating a new webix.message i want to modify the text shown… (by using the messagebox ID )

i’ ve got multiple processes going on and want to countdown in the same box instead to close number and open number 2 … and so on…

thanks in advance!

Hi @wimk

Please, check this https://snippet.webix.com/nsc9hbzv

ehhh…

I made a little addition to webix.js and no it does what I want … (maybe you van add it also?)

// ADDED:
t.changeText = function(id, text) {
var obj = t.pull[id];

	if (obj && obj.parentNode) {
		obj.innerHTML = "<div>" + text + "</div>";
	}		
}

https://snippet.webix.com/yshr07d8

thanks :slight_smile: