Hi, I’m newbie in webix and already have an issue with data loading to datatable.
According to “http://docs.webix.com/datatable__supported_data_types.html#json” my php script generate json string like this:
[{ id:“1”, year: “01.01.2002”, num: “13”}]
and in webix config:
dtable = new webix.ui({
id:“dtable”,
container:“box”,
view:“datatable”,
autowidth:true,
autoheight:true,
autoConfig:true,
url:“test.php”});
As result I got empty rectangle
What I’m doing wrong ?