Using this custom CSS I am able to remove all the borders on a gird. Works great.
/* Grids can't have borders */
.k-grid, .k-grid * { border: 0 !important; }
the problem is that it removed borders from all the elements in the grid. How can I edit the CSS so that only the Gird has all the borders and lines removed, but all the child controls still have their borders?
/* Grids can't have borders */
.k-grid, .k-grid * { border: 0 !important; }
the problem is that it removed borders from all the elements in the grid. How can I edit the CSS so that only the Gird has all the borders and lines removed, but all the child controls still have their borders?