jKanban
jKanban
jKanban allow you to create and manage Kanban Board in your project!
We used some 3rd party plugins while developing the Qoduby template. We have customized these plugins according to our template. You can view examples of this plugin below.
You can find the original documentation of this plugin in the info card above.
Basic Example
<div id="demo1"></div>
var kanban1 = new jKanban({
element:'#demo1',
boards :[
{
'id' : '_todo',
'title' : 'Try Drag me!',
'item' : [
{
'title':'You can drag me too',
},
{
'title':'Buy Milk',
}
]
},
{
'id' : '_working',
'title' : 'Working',
'item' : [
{
'title':'Do Something!',
},
{
'title':'Run?',
}
]
},
{
'id' : '_done',
'title' : 'Done',
'item' : [
{
'title':'All right',
},
{
'title':'Ok!',
}
]
}
]
});