This is a migrated thread and some comments may be shown as answers.

RadEnumEditor Not Working as Intended?

4 Answers 58 Views
PropertyGrid
This is a migrated thread and some comments may be shown as answers.
Andrew
Top achievements
Rank 1
Andrew asked on 04 Apr 2013, 01:34 PM
I'm evaluating the radcontrols package and have had some problems with the RadPropertyGrid with a FlagEnumEditor.  I followed the documentation here: (http://www.telerik.com/help/wpf/radpropertygrid-radenumeditor.html).  When I run the project and click on the enum field, the FlagEnumEditor seems to be broken.  I can't just click on an option, I need to click and press spacebar.  And it also doesn't let go of the focus. If I click anywhere else on the form, even the close button, the editor just opens and closes like I'm clicking on it. I have to stop the executable to exit the program. Am I just not setting it up properly, or is this a bug?

Code I used is below:  Image is attached.

Class MainWindow
    Public Sub New()
 
        ' This call is required by the designer.
        InitializeComponent()
 
        ' Add any initialization after the InitializeComponent() call.
        RadPropertyGrid1.Item = New Employee
 
    End Sub
End Class
 
Class Employee
 
 
    Public Property Name As String
    Public Property Position As PositionType
 
    <Flags()> _
    Public Enum PositionType As Integer
        All = -1
        None = 0
        Engineer = 1
        Sales = 2
        Marketing = 4
        Management = 8
    End Enum
 
End Class

4 Answers, 1 is accepted

Sort by
0
Accepted
Yoan
Telerik team
answered on 04 Apr 2013, 03:19 PM
Hello Andrew,

We have fixed some issues related to the FlagEnumEditor recently. May I ask you to test with our latest binaries from the Q1 2013 SP release?

Greetings,
Yoan
the Telerik team

Explore the entire Telerik portfolio by downloading Telerik DevCraft Ultimate.

0
Larry
Top achievements
Rank 1
answered on 05 Apr 2013, 03:29 PM
I am facing the similar problem when using RadDropdownButton in PropertyGrid. Can you please confirm sp1 fixes it?
0
Dimitrina
Telerik team
answered on 05 Apr 2013, 03:34 PM
Hello,

The release is out, so you could download it and test at your end. Please let us know in case you encounter any problem. 

Regards,
Didie
the Telerik team

Explore the entire Telerik portfolio by downloading Telerik DevCraft Ultimate.

0
Andrew
Top achievements
Rank 1
answered on 05 Apr 2013, 06:11 PM
Yes, this fixed the issue on my end.
Tags
PropertyGrid
Asked by
Andrew
Top achievements
Rank 1
Answers by
Yoan
Telerik team
Larry
Top achievements
Rank 1
Dimitrina
Telerik team
Andrew
Top achievements
Rank 1
Share this question
or