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
455
How to prevent users from selecting more than one row in a grid?
posted

Hi,

I have to prevent users from selecting more than one row in a grid. Is there any property to do this? Thanks!

Tom

Parents
No Data
Reply
  • 469350
    Verified Answer
    Offline posted

     
            private void ultraGrid1_InitializeLayout(object sender, Infragistics.Win.UltraWinGrid.InitializeLayoutEventArgs e)
            {
                e.Layout.Override.SelectTypeRow = SelectType.Single;
            }

Children
No Data