JavaScript UI Libraries & Blazor Components Suite – Smart UI › Forums › Kanban › How to change ‘No Tasks’ message when there’s no data in kanban? › Reply To: How to change ‘No Tasks’ message when there’s no data in kanban?
September 4, 2023 at 3:18 am
#108653
svetoslav_borislavov
Participant
Hi,
You may turn off the message either for all the columns or for specific ones, here is an example:
https://codepen.io/svetoslavb04/pen/mdarMMr
Turning off the message can be made with pure CSS:
/*For specific columns*/
.smart-kanban-column[data-field=”manualTesting”] .smart-kanban-column-content-tasks.empty:after{
content: “”
}
/*For all columns*/
.smart-kanban .smart-kanban-column-content-tasks.empty:after {
content: “”
}
Best Regards,
Svetoslav Borislavov
Smart UI Team
https://www.htmlelements.com/