wimk
1
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!
Dima_S
2
wimk
3
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>";
}
}