TextItem
Item that displays the value of the configured field in a XSS safe way.
Text item
//<code-header>
fiddle.title = 'Text item';
//</code-header>
const taskBoard = new TaskBoard({
appendTo : targetElement,
features : {
columnToolbars : false
},
bodyItems : {
prio : { type : 'text' }
},
columns : [
'todo',
'doing',
'done'
],
columnField : 'status',
project : {
tasks : [
{
id : 1,
name : 'Go surfing',
status : 'doing',
prio : 'Low'
},
{
id : 2,
name : 'Go skiing',
status : 'done',
prio : 'Medium'
},
{
id : 3,
name : 'Go camping',
status : 'todo',
prio : 'High'
}
]
}
});Properties
2
Properties
2Typedefs
1
Typedefs
1TaskItemOptionsTaskItem