Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
3550
Mark the border of the slected row
posted

I want to mark the borders of the selected row.

I use the css

 
tbody > tr.ActiveRowClass, .igg_ActiveRow

{
        background-color: inherit;
        border-color: rgb(37,12,152);
        border-width: 2px;
}
 
In the explorer, in trace stlyes on the tbody->tr, I see that it does take effect.
However, the borders of the selected row are not being colored.
Parents
  • 29417
    Offline posted

    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://ko.infragistics.com/support

     

Reply Children