AD
Administrator
Syncfusion Team
September 27, 2006 05:49 AM UTC
Hi Konstantin,
You can handle the QueryCellStyleInfo event and set the Style.DropDownStyle property to GridDropDownStyle.Editable in a ForeignKeyCell. See the below code snippet for more details.
private void grid_QueryCellStyleInfo(object sender, GridTableCellStyleInfoEventArgs e)
{
if( e.Style.CellType == "ForeignKeyCell")
{
e.Style.ReadOnly = false;
e.Style.DropDownStyle = GridDropDownStyle.Editable;
}
}
Let me know if this helps.
Best Regards,
Haneef