I am wondering if there is an easy way to embed a custom combo in the WinGrid. My customer combo is something like:
public partial class ComboEditor : UserControl
{
}
The reason that it is inheriting from UserControl is to add a button in the conrol as well. But before the butto I have added the UltraComboEditor.
Yes, one of the features added to NA 2009.2 was the Infragistics.Win.UltraWinEditors.UltraControlContainerEditor control, which gives you an easy way to use your own custom control as an embeddable editor. You place your custom control on it, and assign it to the column's EditorComponent property.
Thanks for the help. I tried and it helped, but when I unfocus from the cell, the text is not shown in that cell. But when I focus to the cell again, the text of the combo is shown. I tried to set its rendering properties using a text box, but the cell is shown with the border of the text box, when I use the label the program crashes!