Hi, guys. I wanted to erase the borders of header. I changed the background color, however, the border of header did not disappear. I tried to set border to zero in css file, and also to set true borderless property. However, it did not change. How can I erase the borders of header?
Hello @Yryskul !
You can create custom style like that, set datatable’s css
webix.ui({
view:"datatable",
id:"dtable",
css:"myGrid",
...
})
and
<style>
.myGrid td[role=presentation]{
border-right:0 none !important
}
</style>
Please check the sample: https://snippet.webix.com/b7rc1uam
And there is the related discussion: https://docs.webix.com/datatable__styling.html#comment-4003678095