How do i display the Drop Down button in my Editable Combo Box type Grid Column?
See picture attached...
Hello Itamarbe,
I am still following this forum thread. Have you been able to take a look at your application for more specific details ?If you have any other questions please feel free to let us know.
Under the "Columns[0]" I meant that you would have to specify your desired column there. I would like to know what are the settings of this column like "Style" and if you are using an external editor to your UltraGrid, or anything else is being set in the UltraGrid?
Also in order to verify if this setting is applied correctly you could use a Button, and inside its click event to get the current property setting of the ButtonDisplay Style of the desired column in the UltraGrid, so you will see if it is the one that you have set or if it is anything else. If you have any other questions please feel free to contact us.
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...
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; }