Hi!
I am trying to create my first Webix app using Ruby on Rails as a server side.
Everything as usual:
-
Welcome controller with index
-
welcome#index as a root_path
-
Application layout was modified accordingly to run Webix application
-
User model with name and email attributes created. One record was created.
-
Webix application skeleton was created
~~~js
webix.ui({
rows: [
{type:"header", template:"Webix Grid Test"},
{cols: [
{rows: [
{template:"Tree", width: 250 },
{view:"resizer"},
]},
{view:"resizer"},
{rows: [
{
view:"datatable",
container:"grid",
url:"rest->/users",
datatype:"json"
}
]}
]
}
]
});
~~~
But I see no Users output unfortunately. What I am doing wrong?