I have defined a cell in a grid, like this:
DataTable dt = new DataTable();
dt.Columns.Add( "Value" );
dt.Columns.Add( "Description" );
dt.Rows.Add( new object[] { "1", "A" } );
dt.Rows.Add( new object[] { "2", "B" } );
dt.Rows.Add( new object[] { "3", "C" } );
dt.Rows.Add( new object[] { "4", "a very long description" } );
gridControl1[1,3].CellType = "GridListControl";
gridControl1[1,3].DataSource = dt;
gridControl1[1,3].DisplayMember = "Value";
When the text in some of the cells in the grid that appears in the dropdown is very long, the dropdown becomes very large.
How can I set the size of the columns displayed in the dropdown grid?
Thanks.
Raul