the path for uploading attachments for cards
webix.ui({
view:"kanban",
attachments:"server/upload", cols:[
{ header:"Backlog", body:{ view:"kanbanlist", status:"new" }},
{ header:"In Progress", body:{ view:"kanbanlist", status:"work" }}
],
data:[
{
id:1, status:"new", text:"Test new authentication service",
attachments:[
{ id:1, link:"./server/files/file003.xls", size:2702 }
]
},
{
id:2, status:"work", text:"Performance tests",
attachments:[
{id:2, link:"./server/files/image001.jpg", size:85919 },
{id:3, link:"./server/files/image002.jpg", size:105981 }
]
}
]
});