I am facing a
The issue I am encountering is that while the CSS for k-treeview is being applied from the scss file, it is not being applied for the kendo-checkbox
I attempted to resolve the problem by using the following code:
<kendo-treeview
[nodes]="tcHolderProducts"
class="productTree"
[textField]="'text'"
kendoTreeViewCheckable
kendoTreeViewExpandable
kendoTreeViewSelectable
[(checkedKeys)]="checkedKeys"
[children]="children"
[hasChildren]="hasChildren"
>
</kendo-treeview>
and my css is :
.k-treeview {
column-count: 2;
-moz-column-count: 2;
-moz-column-gap: 20px;
-webkit-column-count: 2;
-webkit-column-gap: 20px;
column-gap: 20px;
kendo-checkbox {
padding-bottom: 10px;
}
}
Despite trying various classes, I have not been able to resolve the issue.