bbros
Sep 05, 2021, 5:17 PM
Hello,
spotless theme is very nice but when a grid counts several records only few are shown, because the padding of .x-grid-cell-inner class.
In my project, grids are renderend fully in code behind, and just few of those needs a change of that class.
I really don't know how to handle this.
I created a custom css class which is avaliable in page.
.extreme-mini-grid {
padding: 2px 6px !important;
font-size: 12px !important;
}
I would like to override .x-grid-cell-inner's padding and .x-grid-item's font-size.
Setting in the .cs file the following line nothing changes:
grid.BodyCls = "extreme-mini-grid";
how can I do?
thank you!
spotless theme is very nice but when a grid counts several records only few are shown, because the padding of .x-grid-cell-inner class.
In my project, grids are renderend fully in code behind, and just few of those needs a change of that class.
I really don't know how to handle this.
I created a custom css class which is avaliable in page.
.extreme-mini-grid {
padding: 2px 6px !important;
font-size: 12px !important;
}
I would like to override .x-grid-cell-inner's padding and .x-grid-item's font-size.
Setting in the .cs file the following line nothing changes:
grid.BodyCls = "extreme-mini-grid";
how can I do?
thank you!