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
745
RowSelector right click behavior
posted

Hi,

 

I'm using an UltraWinGrid (version 11.1.20111.1003).

When right clicking on a row selector, the previous selected line is kept, which is not what I expect (previous selected row should be unselected). How can I disable this behavior?

Parents
No Data
Reply
  • 20872
    Offline posted

    Hello tfresnea,

    If you would like to have just a single row selected, than I suggest you to set the SelectTypeRow of the Override object to Single in the InitializeLayout event of the UltraGrid like:

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

    Please let us know if you have any other questions with this matter.

Children