we call the custom function to click on bibli ( name field ) in the task
HTML
<div class="b-taskboard-taskitem b-taskboard-text b-editable" data-role="item-name" data-field="name" data-ref="text" role="presentation" style="">bibli</div>
we add
this.taskboard.on('taskclick', ({ taskRecord, event }) => {
if (event.target.matches('.b-taskboard-text')) {
this.goPage(taskRecord);
}
});
but there are two div that contain the same class
description also contains the same class
<div class="b-taskboard-taskitem b-taskboard-text b-editable" data-role="item-description" data-field="description" data-ref="text" role="presentation" style="">James Packard</div>
so can we add custom class to name field