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
405
Display Drop Down Button
posted

How do i display the Drop Down button in my Editable Combo Box type Grid Column?

 

See picture attached...

 

 

Parents
  • 20872
    Offline posted

    Hello Itamarbe,

    If I understand correctly your requirement, you could have this button always visible if you set the ButtonDispalyStyle of the desired column to Always. One way to do so would be handling the InitializeLayout event of the UltraGrid and setting it there using the following code snippet:

            private void ultraGrid1_InitializeLayout(object sender, Infragistics.Win.UltraWinGrid.InitializeLayoutEventArgs e)
            {
                e.Layout.Bands[0].Columns[0].ButtonDisplayStyle = Infragistics.Win.UltraWinGrid.ButtonDisplayStyle.Always;
            }


    If you have any other questions please feel free to let us know.

     

Reply Children