определяет список пользователей, которые могут добавлять комментарии
webix.ui({
view:"comments",
currentUser:2,
data:[
{
id:1, user_id:1, date:"2018-06-10 18:45",
text:"Let's deal with half of the points in the plan without further delays."
},
{ id:2, user_id:2, date:"2018-06-10 19:40", text:"Yes, let's do it." }
],
users:[ { id:1, value:"Corvo Attano", image: "./common/imgs/corvo.jpg" }, { id:2, value:"Daisy Fitzroy", image: "./common/imgs/daisy.jpg" } ] });
Список пользователей можно задать в данных, доступных на клиентской стороне, в DataCollection или файла, например:
webix.ui({
view:"comments",
currentUser:2,
data:[
{
id:1, user_id:1, date:"2018-06-10 18:45",
text:"Let's deal with half of the points in the plan without further delays."
},
{ id:2, user_id:2, date:"2018-06-10 19:40", text:"Yes, let's do it." }
],
users:"/data/users.json" });