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
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>
<style type="text/css">
.mine { background-image:none !important; background-color:White !important; } </style>
<ig:RowSelectors RowSelectorCssClass="mine" > </ig:RowSelectors>
Hi Nikifor,
Thanks for your help, my issue's resolved.
Thanks,
Nam