Completed
Last Updated: 14 Feb 2013 07:37 by ADMIN
Steps to reproduce:
1. Create a custom type descriptor for an object that returns less properties than the default one.
2. Set this descriptor to the object
3. Set an object array containing two such objects to the SelectedObjects property of RadPropertyGrid
4. Run the project and you will see all properties of the object are shown disrespecting the custom type descriptor.
Completed
Last Updated: 04 Feb 2013 07:14 by ADMIN
Steps to reproduce:
1. Set a PasswordPropertyText(true) attribute to a string property of an object.
2. Set the object as selected of a property grid.
3. Open the password property for edit.
Any other text property you try to edit will be handled as if it was password.
Completed
Last Updated: 25 Jan 2013 09:32 by ADMIN
Currently users can only specify a UITypeEditor. They should be able to specify which BaseInputEditor to be used for a given property when they edit it:
[Editor(typeof(PropertyGridBrowseEditor), typeof(BaseInputEditor)]
public string FilePath { get; set; }
Completed
Last Updated: 12 Dec 2012 07:26 by ADMIN
In some cases when the selected object is changed while a bool property is selected an InvalidCastExceptions is thrown.
Check ticket for reproduction steps and project.
Completed
Last Updated: 15 Nov 2012 07:56 by ADMIN
The RadPropertyGrid editing mechanism can be improved by adding ValueChanged/ing events similar to those in RadGridView.
Completed
Last Updated: 03 Sep 2012 05:07 by ADMIN
RadPropertyGrid should not invalidate the properties when the help bar is resized.
Completed
Last Updated: 20 Aug 2012 06:08 by ADMIN
RadPropertyGrid calls the TypeConverter methods GetStandardValuesSupported and GetStandardValues passing null as parameter when it should pass the property item.
Code to reproduce:

this.radPropertyGrid1.SelectedObject = new SomeClass();

public class SomeClass
{
    [TypeConverter(typeof(CustomValueConverter))]
    public string CustomValue
    {
        get;
        set;
    }
}

public class CustomValueConverter : TypeConverter    
{
    public override bool GetStandardValuesSupported(ITypeDescriptorContext context)
    {
        return true;
    }

    public override StandardValuesCollection GetStandardValues(ITypeDescriptorContext context)
    {
        return base.GetStandardValues(context);
    }
}
Completed
Last Updated: 10 Aug 2012 07:13 by ADMIN
When editing a DateTime? property the property grid shows a text box editor instead of calendar.
Completed
Last Updated: 01 Aug 2012 05:08 by ADMIN
The RadPropertyGrid implementation should be improved in a way that will allow users to override the methods that fire events like: OnEditorRequired, OnEditorInitialized, OnCustomGrouping etc.
Resolution:
1. Inherit from PropertyGridTableElement and override the method you want.
2. Inherit from PropertyGridSplitElement and override the CreateTableElement() return your class from 1.
3. Inherit from PropertyGridElement and override the CreateSplitElement() return your class from 2.
4. Inherit from RadPropertyGrid and override the CreatePropertyGridElement() return your class from 3.
Completed
Last Updated: 20 Jul 2012 07:31 by ADMIN
When applied to a property the editor for this property should show its text as a password.
Completed
Last Updated: 15 May 2012 04:36 by ADMIN
FIX. RadPropertyGrid - setting the SelectedObject to something and then set it to a property store, does not remove the initial items

Workaround: clear the items prior setting the property store:
        this.radPropertyGrid1.PropertyGridElement.PropertyTableElement.ListSource.Clear();
Completed
Last Updated: 10 May 2012 11:13 by ADMIN
When using a the following property store item:
this.PropertyStore.Add(typeof(Image) , "Test Image" , null );
the user cannot select an image via the BrowseEditor.
Completed
Last Updated: 10 May 2012 04:45 by ADMIN
When you change the CurrentUICulture the string "(none)" in the PropertyGridItemElement is localized but when you open the editor, the text is still "(none)".
Completed
Last Updated: 14 Mar 2012 12:00 by ADMIN
When a property has a TypeConverter which method GetStandardValuesExclusive returns false. Users should be able to enter additional values, other than the values returned by the GetStandardValues mehtod.
Completed
Last Updated: 28 Feb 2012 06:41 by ADMIN
When setting multiple objects or a mix of objects, some of which implement the INotifyPropertyChanged interface changes in these objects should be reflected in the RadPropertyGrid.
Completed
Last Updated: 20 Feb 2012 07:58 by ADMIN
1. Drag a new RadPropertyGrid to a form.
2. Set the selected object property to any object
3. Add an event handler for the PropertyValueChanged event and add code in it that sets the same object as selected object of the property grid.
4. You will get a NullReferenceException
Completed
Last Updated: 29 Dec 2011 07:54 by ADMIN
Steps to reproduce.

1. Drag a RadPropertyGrid to a form.
2. Set the selected object to a button for example.
3. Set the System.Threading.Thread.CurrentThread.CurrentUICulture to bg-BG for example
4. Run the project and try to edit the Size property. You will see that it is displayed in the format X;Y, but you have to enter string in the X,Y format otherwise you get an exception.
Completed
Last Updated: 22 Nov 2011 06:09 by ADMIN
When the spin editor is opened in the RadPropertyGrid the default min and max values should be the min and max values of the type of the property that is being edited.
Completed
Last Updated: 19 Aug 2011 10:21 by ADMIN
ADMIN
Created by: Ivan Petrov
Comments: 0
Category: PropertyGrid
Type: Feature Request
1
Add the ability to handle collection items in the RadPropertyGrid.
Completed
Last Updated: 11 Aug 2011 10:00 by ADMIN
ADMIN
Created by: Stefan
Comments: 0
Category: PropertyGrid
Type: Feature Request
2
ADD. RadPropertyGrid - add custom grouping functionality