users

an array of users

array users;

Example

webix.ui({
    view: "todo",
    users: [{
            id: "user_1",
            value: "Don Smith",
            path: "../common/img/user_1.jpg"
        },
        ...
    ],
    ...
});

Details

Each object in the array should have the following properties:

  • id (string) - the id of the user
  • value (string) - the user name
  • path (string) - the path to the user's icon
Back to top