Cache templates retrieved via http

I’m using the same template multiple times in a detail of a Tabview. Is it possible to cache template: http->filename.html?

You can do it manually by using

var mytemplate = webix.ajax().sync().get(“filename.html”).responseText;

and use mytemplate where it is necessary.

There’s a nasty bug with this approach that -> gets replaced with ,. That did not happen when I read the same template via http->mytemplate.html.

Unfortunately this is a bug
Presense of “->” pattern in the content breaks data parsing
Will be fixed in the next update