how can i define the background of the columns?
transparent would also be fine.
I couldn't find any information about it.
|
.e - kanban
.e - kanban - table.e - content - table
.e - content - row:not(.e - swimlane - row)
td
{
background - color: black;
} |
optimal.
I was almost there.
to be able to do it at runtime?
i tried to give an id to the column
<e-kanban-column headerText = "Done" keyField = "Close" template = "# headerTemplate" allowToggle = "true" id = "columnClose"> </e-kanban-column>
and then
document.getElementById ("columnClose"). addClass ("e-columnstyle");
but the id does not exist ...
|
<script>
var elem;
function OnQueryCellInfo(args) {
this.elem = args.element.getElementsByClassName(
'e-content-cells e-drag e-drop e-droppable'
);
if (this.elem != null) {
for (var i = 0; i < this.elem.length; i++) {
this.elem[i].classList.add("e-columnstyle");
}
}
}
</script>
<style>
.e-kanban .e-kanban-table.e-content-table .e-content-row:not(.e-swimlane-row) td.e-columnstyle {
background-color: black;
}
</style> |
excellent
thank you very much...