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
4695
no cell action when select row -- readonly
posted

How can I disable the cell selection when I select the row??

Parents
No Data
Reply
  • 20872
    Offline posted

    Hello,

    What you could do in order to achieve what you are looking for is setting the CellClickAction in the InitializeLayout like:

         private void ultraGrid1_InitializeLayout(object sender, Infragistics.Win.UltraWinGrid.InitializeLayoutEventArgs e)
            {   

              e.Layout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.RowSelect;
            }

    Please let me know if you have any other questions.

Children
No Data