Hi, everyone
Anybody met with the issue that, some special characters like chinese changed to messy code, just after the upgrade to latest Webix??
Any solution?
thanks
/Carl
Hi, everyone
Anybody met with the issue that, some special characters like chinese changed to messy code, just after the upgrade to latest Webix??
Any solution?
thanks
/Carl
var filmset = [
{ id:1, title:"大排骨", role:"红烧", money:"10"},
...
{ view:"list", id:"mylist",
template:"#title# - #role# -------- #money#", //2nd column
select:true, //enable selection of list items
height:200,
data: filmset,
}
has been translated into
< div class="webix_list_item webix_selected" style="width:auto; height:34px; overflow:hidden;" webix_l_id="1">大排骨 - 红烧 -------- 10 /div>
Above code works fine for me
http://webix.com/snippet/6cf335f9
Code of Webix do not apply any text transformation. Be sure that you have correct encoding for the page ( you can try to set encoding attribute for the script tag as well )
thanks maksim
it is Done by converting encoding format, thanks for your help