I want to mark the borders of the selected row.
I use the css
Hello drpoalim,
Thank you for posting in our forum.
On the cell level the following class is overwriting the setting:
tbody.igg_Item >tr >td
If you need to overwrite that setting to have a border around the row you need to set for example:
.igg_ActiveRow > td
{
background-color: inherit;
border-top-color: Red !important;
border-top-width: 2px !important;
border-top-style:solid !important;
border-bottom-color: Red !important;
border-bottom-width: 2px !important;
border-bottom-style:solid !important;
}
The !important tag will ensure that those settings won’t be overwritten by the default settings of the grid.
Let me know if you have any questions or concerns.
Best Regards,
Maya Kirova
Developer Support Engineer
Infragistics, Inc.
http://es.infragistics.com/support
I dont want this border around each cell.
I want the border around the entire row.
So I dont want to have this definitions applied to the borders between the cells.
I show the difference in the attached image.