url

the URL for loading data

string url;

Example

webix.ui({
    view: "todo",
    url: "https://someurl.com/todo-backend/",
    ...
});

Related samples

Details

This is an optional property for ToDo. You can organize data uploading and saving using the Backend service, as well as customize it to your needs.

Back to top