See snippet
http://webix.com/snippet/5be543af
all following cell values are not displayed caused by the < char (that might be entered by a user…)
The error occurs only, when the less-then-char is directly followed by a non-space-character
See snippet
http://webix.com/snippet/5be543af
all following cell values are not displayed caused by the < char (that might be entered by a user…)
The error occurs only, when the less-then-char is directly followed by a non-space-character
By default all webix components process data as HTML without any escaping , it can be changed though.
http://webix.com/snippet/7b7a30b9
{ view:"datatable", id:"dt", editable: true, columns:[
{ id:"title", template:"#!title#", fillspace:1 }
], data:grid_data }
Using “#!title#” instead of “#title#” forces the content escaping.