How do i display the Drop Down button in my Editable Combo Box type Grid Column?
See picture attached...
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; }
Did it. didn't help... any definition on Grid or Column level that might have overriding it? the Button is still displayed only when i click on the cell...