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
3166
Override AppStylist ActiveRow Appearance
posted

I am using standard Office2007Blue.isl. The stylesheet has ActiveRow appearance set using resource. In one of the grid I am using the CardView and don't want ActiveRow appearance.

Is there a way to disable ActiveRow appearance ?

Parents
No Data
Reply
  • 469350
    Verified Answer
    Offline posted

    If you are using v2009.2, there's a new property on the grid just for this purpose.You can simply set ActiveAppearancesEnabled to false on the Override object. So typically, you would do something like this:


            private void ultraGrid1_InitializeLayout(object sender, Infragistics.Win.UltraWinGrid.InitializeLayoutEventArgs e)
            {
                e.Layout.Override.ActiveAppearancesEnabled = DefaultableBoolean.False;
            }

    In any older version of the grid, this is much harder. You would either have to modify the isl or else use a DrawFilter.

Children
No Data