I have a dropdown inside a grid and it works just fine. When the grid is displayed the text from the dropdown appears but it looks like text. Is it possible for the dropdown to look like a dropdown all the time so that the user says "Hey it's a dropdown" . Perhaps it's an option that I have overlooked
thanks in advance
Peter
I think this is what you are looking for:
http://help.infragistics.com/Help/NetAdvantage/NET/2008.1/CLR2.0/html/Infragistics2.WebUI.UltraWebGrid.v8.1~Infragistics.WebUI.UltraWebGrid.CellButtonDisplay.html
Let me know if it works.
Patrick
Apparently I was wrong....
http://forums.infragistics.com/forums/p/9187/35771.aspx#35771
I guess they do not allow this functionality for performance reasons.
Pat
So I tried
_grid.DisplayLayout.Bands[0].Columns[0].Type = ColumnType.DropDownList; _grid.DisplayLayout.Bands[0].Columns[0].CellButtonDisplay = CellButtonDisplay.Always;
and as the other poster pointed out it did not make any difference. I will play around with the template column solution as recommended in the other post.
thanks anyway.