Completed
Last Updated: 06 Jun 2014 12:40 by ADMIN
ADMIN
Created by: Ivan Petrov
Comments: 0
Category: Editors
Type: Feature Request
5
There should be a mean to restrict the possible values a user can input.
Completed
Last Updated: 29 May 2014 08:57 by ADMIN
ADMIN
Created by: Stefan
Comments: 0
Category: Editors
Type: Feature Request
10
One should be able to show a desired time range i.e. from 8 am to 6 pm
Completed
Last Updated: 10 Jul 2012 09:17 by ADMIN
Steps to reproduce:

1. Add a RadPropertyGrid to a form.
2. Select an object with DateTime property
3. Subscribe to the EditorInitialize event and set min and max date.
4. Run the application and open the property for edit. Type in a value outside the valid range and end edit. You will see that the invalid value is saved.
Completed
Last Updated: 04 Jun 2015 13:24 by ADMIN
Keyboard input does not work in RadDateTimePicker when the Culture is ar-SA
Unplanned
Last Updated: 15 Aug 2017 09:33 by ADMIN
Users should be able to increment the whole value of the RadMaskedEditBox using the Up/Down arrow keys or Mouse Wheel
Completed
Last Updated: 10 Jun 2014 10:39 by Svetlin
Allow the RadDateTimePicker editor of RadGridView to allow replacement of the months' popup.

Resolution:   This behavior can be achieved when set the HeaderNavigationMode property to Zoom of RadCalendar. The feature is introduced in Q2 2014.  
For example: 
void radGridView1_CellEditorInitialized(object sender, Telerik.WinControls.UI.GridViewCellEventArgs e)
        {
            RadDateTimeEditor dtEditor = e.ActiveEditor as RadDateTimeEditor;
            if (dtEditor != null)
            {
                RadDateTimeEditorElement element = (RadDateTimeEditorElement)dtEditor.EditorElement;
                element.Calendar.HeaderNavigationMode = HeaderNavigationMode.Zoom;
            }
        }
Completed
Last Updated: 26 May 2015 14:42 by ADMIN
ADD. Popup control which can host controls and be associated with a button or opened on request.
Completed
Last Updated: 14 May 2012 04:43 by ADMIN
To reproduce - create a form with a button and on click open another form with couple of RadColorBoxes in it. After closing the child form the memory is not released.
Completed
Last Updated: 05 Jun 2014 07:07 by ADMIN
Steps to reproduce:

radDateTimePicker1.Value = DateTime.Today; 
radDateTimePicker1.SetToNullValue(); 
radDateTimePicker1.Value = DateTime.Today;
Completed
Last Updated: 05 Jun 2014 07:07 by ADMIN
ADMIN
Created by: Peter
Comments: 0
Category: Editors
Type: Bug Report
0
RadTimePicker - unable to localize Close button Text using Localization Provider
Completed
Last Updated: 05 Jun 2014 07:07 by ADMIN
Visual Style Builder is unable to start on computer with Italian regional settings.
Completed
Last Updated: 21 Jun 2012 03:44 by Jesse Dyck
Selection in RadDateTimePicker when the culture is ar-SA is not correct. Further, changing the selected date using the arrow keys does not set the right value.
Completed
Last Updated: 26 Apr 2012 06:12 by ADMIN
Exception is thrown on key press if RadMaskedEditBox has MaskType set to Numeric, Mask to C2, and Value to Null.
Completed
Last Updated: 05 Jun 2014 07:07 by ADMIN
RadDateTimePicker ValueChanging event cannot be canceled with e.Cancel = true;
Completed
Last Updated: 02 Apr 2012 08:30 by ADMIN
FIX. RadSpinEditor - user should not be able to change the value of the control with the arrow keys when in ReadOnly mode
Completed
Last Updated: 10 Sep 2015 14:48 by Metro
When you inherit from RadTextBox and override the OnKeyPress or OnKeyDown, those events are not fired.
Completed
Last Updated: 26 Mar 2012 08:44 by ADMIN
FIX. RadMaskedEditBox - the minus sign is stripped our with ExcludePromptAndLiterals and IncludePrompt formats with currency mask, while it should not.
Completed
Last Updated: 14 Mar 2012 04:25 by Svetlin
Created by: Svetlin
Comments: 0
Category: Editors
Type: Feature Request
0
Improve the RadSpellChecker component by adding localization support.
Completed
Last Updated: 29 Nov 2017 07:03 by Svetlin
1. Provide the 'Ignore' button above the 'Ignore All' button 

2. If no text is entered in the 'Change To' text field and the 'Change' button is clicked, the highlighted suggestion should be used instead.

3. After the 'Change' button is clicked, the 'Change To' text box should be cleared so that users don't have to delete the text string before entering something else.
Declined
Last Updated: 20 Oct 2014 14:44 by Svetlin
Allow RadSpellChecker to perform check spelling for many controls.

Reason for denial: 
The RadSpellCheker knows the associated document and for example if a user presses ignore all (in as you type) this should be ignored only for specific documents. 
Also spell checker is inherited from MS component named 'Native Windows' which allows spell checker to receive a WND messages from the associated control.