Hi,
I need to add a gap between the rows as well as at the start and end of each row. Additionally, I want to change the background color of these gaps. The code below creates gaps, but it also affects the spacing between cells (which I don't want), and the gap color does not change as expected. How can I achieve this correctly?
/* Target the table inside the grid to create spacing */
.e-grid .e-gridcontent table {
border-collapse: separate;
border-spacing: 30px; /* Creates a 30px gap between rows */
border-color: aqua !important; /* The color of the gaps */
}