How to decode the encode data using webix.template.escape??

How to decode the encode data using webix.template.escape??

Hello @webix_B_123,
Please, check the solution in the following thread.

So there is no webix method for this.

We need loop through all the chars.

var unEscape = {
“&”: “&”,
“<”: “<”,
“>”: “>”,
“”": “”",
“’”: “’”,
“`”: “`”
};
are these only chars which will encode??

So there is no webix method for this.

Unfortunatly not. There is no internal method.

are these only chars which will encode??
As a solution you can create any character-set object and works with it.

Thanks for explanation.