The row has the outside border around the row but the individual cell right and left border is not showing. How do I get this working. I've tried border-right and border-left to force it but still can't get it to show.
<ig:RowAdding Alignment="Top" EditModeActions-EnabledOnActive="true" EditModeActions-MouseClick="Single" Enabled="true" AddNewRowCssClass="NewRowCssClass"/>
tbody tr.NewRowCssClass{
border-color:black;
border-width:1px;
border-style:solid;
background-color:#F5F5F5;
}
Hello,
I am still following your case. Have you been able to resolve the issue?If you have any concerns or questions, please feel free to contact me, I will be glad to help you.Thank you for choosing Infragistics components!
Hello Robert,
Thank you for contacting Infragistics!
The tr element, specified by the selector has display: inherit. In order to be apply the given styles you can set it to block or inline-block.
Let me know if you need further assistance.