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
140
How to disable the default highlighting of a selected row in Ultragrid?
posted

Parents
No Data
Reply
  • 469350
    Verified Answer
    Offline posted


            private void ultraGrid1_InitializeLayout(object sender, Infragistics.Win.UltraWinGrid.InitializeLayoutEventArgs e)
            {
                UltraGridLayout layout = e.Layout;
                UltraGridOverride ov = layout.Override;

                ov.SelectedAppearancesEnabled = DefaultableBoolean.False;
            }

Children
No Data