BoldSignA modern eSignature application with affordable pricing. Sign up today for unlimited document usage!
[Kanban.html] $("#Kanban").ejKanban(
{
dataSource: data,
workflows:[
{key:"Open",allowedTransitions:"Started"}, // you can drag from open to started by adding the started column in allowTransitions property.
{key:"Started",allowedTransitions:"Paused,Closed"},//you can drag from started to paused or closed by adding the Paused or closed column in allowTransitions property.
{key:"Paused",allowedTransitions:"Started,Closed"}//you can prevent drag from started, or paused to open.
],
columns: [
{ headerText: "Open", key: "Open"},
{ headerText: "Started", key: "Started" },
{ headerText: "Paused", key: "Paused" },
{ headerText: "Closed", key: "Closed" }
],
keyField: "Status",
allowTitle: true,
fields: {
content: "Summary",
primaryKey: "Id",
tag: 'Priority'
},
allowSelection: false
}); |