Hi Carlo,
The cause of the issue can be the height of expand and collapse button is overwrite on the parent Grid cells. So, overwrite the CSS of expand and collapse button of parent Grid control. Please refer to the below code example.
.e-grid .e-icon.e-gdiagonalnext, .e-grid .e-icon.e-gnextforward{ margin-top: 2px; } .e-grid .e-recordpluscollapse>div, .e-grid .e-detailrowcollapse>div, .e-grid .e-recordplusexpand>div, .e-grid .e-detailrowexpand>div{ height:8px; } |
Regards,
Saravanan A.
<style> .e-grid .e-detailcell { padding: 0px; border-top-style: none; } |
Hi Carlo,
Thanks for the update.
Please let us know if you need any further assistance. We will be happy to help you.
Regards,
Alan Sangeeth S
Hi Carlos,
We have analyzed your screenshot and achieved your requirement by overriding the CSS of “e-detailindentcell” class and refer to the below code example.
.e-grid .e-detailindentcell{ border-top-width: 1px; border-top-style: solid; border-top-color: #c8c8c8 } .e-grid .e-detailindentcell{ border-right-width: 0px; } |
Regards,
Saravanan A.
Hi Carlos,
We are sorry for the inconvenience.
We have analyzed the provided CSS code and we have achieved your requirement by modifying the CSS of detailcell (.e-grid .e-detailcell) class and also include the CSS provided in our previous update which we updated on 15th December 2015. Please refer to the below code example.
/*Modified CSS*/ .e-grid .e-detailcell { padding: 13px; border-top: 1px; border-top-color: #c8c8c8; border-top-style: solid; } /*CSS in our previous update*/ .e-grid .e-detailindentcell{ border-top-width: 1px; border-top-style: solid; border-top-color: #c8c8c8; border-right-width: 0px; } |
Regards,
Saravanan A.
Hi Carlos,
Thanks for your update.
We are happy that the provided information helped you.
Regards,
Saravanan A.