The method EditValue is used for dropdown the list box for a cell.
When this EditValue is called is it possible to find the name of flygrid where
the dropdown list occurred.
Yes, you can extract FlyGrid instance from provider parameter provided by EditValue:
[c#]
public override object EditValue(ITypeDescriptorContext context, IServiceProvider provider, object value)
{
FlyGrid flyGrid = provider as FlyGrid;
//....
}