Completed
Last Updated: 15 Aug 2017 10:54 by ADMIN
ADMIN
Dess | Tech Support Engineer, Principal
Created on: 22 May 2017 05:52
Category: PropertyGrid
Type: Feature Request
1
ADD. RadPropertyGrid - add null value support for PropertyGridSpinEditor
RadSpinEditor now supports null values. This functionality is relevant for the PropertyGridSpinEditor as well  http://docs.telerik.com/devtools/winforms/editors/spineditor/null-value-support
1 comment
ADMIN
Dess | Tech Support Engineer, Principal
Posted on: 07 Aug 2017 06:29
How to use it:
private void RadPropertyGrid1_EditorInitialized(object sender, PropertyGridItemEditorInitializedEventArgs e)
{
PropertyGridSpinEditor editor = e.Editor as PropertyGridSpinEditor;
if (editor!=null)
{
BaseSpinEditorElement el = editor.EditorElement as BaseSpinEditorElement;
el.EnableNullValueInput = true;
}
}

When the editor is activated, pressing Ctrl+Del will clear the value.