Home - Forums-.NET - FlyGrid.Net (Windows Forms) - Disable typing in cells with custom drop downs?

FlyGrid.Net (Windows Forms)

.NET Datagrid - Fast, highly customizable, industry standards .NET data grid control for WinForms

This forum related to following products: FlyGrid.Net

Disable typing in cells with custom drop downs?
Link Posted: 25-Sep-2006 12:22
I've got a column that implements ISupportsCustomDropDown and displays a modal dialog box with custom options for selecting and editing the data. Is there any way to prevent users from typing arbitrary values directly into the cells of this column?

Thanks in advance!
Link Posted: 25-Sep-2006 23:20
If you're inherit your column from the DropDownListColumnBase or its inheritors you can set DropDownStyle property to DropDownStyle.DropDownList to disable typing in editor portion of dropdown.
If you're using your own implementation of ISupportsCustomDropDown interface you can add following code to disable typing in editor protion of dropdown:
[c#]
public override bool MakeEditorReadOnly(NodeBase node)
{
  //returning true disables editing in inplace editor
  return true;
}