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
395
How to remove active cell and also remove arrow icon, row border
posted

Hi guys,

I use javascript to remove active cell but the  arrow icon (locates at the beginning of row) and the row border still there.

How can i also remove both the arrow icon and the row border?

thanks,

Nam Dang

Parents
No Data
Reply
  • 13438
    posted

    Hello Dang,

     

    Thank you for posting in our community. The class which is applied to the row selector when you have this feature enabled is .igg_ActiveRowSelector. You can write your own class to be applied instead like:

     <style type="text/css">

                    .mine {             background-image:none !important;             background-color:White !important;         }     </style>



      <ig:RowSelectors RowSelectorCssClass="mine" >                 </ig:RowSelectors>


    And this is the way to say one of your grids "I don't want to see arrow picture and blue background inform of the selected row"

    Please let me know if this information helps you resolve the issue.

Children