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
725
Disabling a row of an UltraWinGrid
posted

Hello.

How do I disable a particular row of an UltraWinGrid leaving the others enabled? I am using Visual Studio.

  • 725
    Verified Answer
    Offline posted

    Hi

    I finally found how to do it:

    for i = 0 to Grid1.Rows.Count - 1

        if --row i is the one I want to deactivate-- then    

                  Grid1.Rows(i).Activation = Infragistics.Win.UltraWinGrid.Activation.NoEdit

       end if

    next i