Unplanned
Last Updated: 24 Jun 2019 11:15 by ADMIN

Set the format:

dateTimePicker1.Format = DateTimePickerFormat.Custom;
dateTimePicker1.CustomFormat = "dd/MM/yyyy";

Enter 18 in the yaer part, the year should be set to 2018, the year should be cleared when starting to type as well.

 

Unplanned
Last Updated: 15 Aug 2017 10:02 by ADMIN
Note: when you open the spell check dialog  and it iterates through the words, it does not highlight (select) the word in the linked RadTextBoxControl/RadTextBox, like it does in the Word's spell checker. 
Unplanned
Last Updated: 15 Aug 2017 10:02 by ADMIN
ADMIN
Created by: Dess | Tech Support Engineer, Principal
Comments: 0
Category: Editors
Type: Feature Request
0

			
Unplanned
Last Updated: 15 Aug 2017 10:02 by ADMIN
One should be able to move to the next/previous word with Ctrl + right/left
Unplanned
Last Updated: 15 Aug 2017 10:02 by ADMIN
The RadTokenizedTextItem should reference the data items as well. 
Unplanned
Last Updated: 15 Aug 2017 10:02 by Felix
Unplanned
Last Updated: 15 Aug 2017 10:02 by ADMIN
ADMIN
Created by: Hristo
Comments: 0
Category: Editors
Type: Feature Request
4
RadTextBox should indicate ReadOnly state
Unplanned
Last Updated: 15 Aug 2017 10:02 by ADMIN
Unplanned
Last Updated: 15 Aug 2017 09:41 by ADMIN
Add option to RadSpellChecker which will allow you to append the newly added words to the loaded dictionary and save them on the hard drive.
Unplanned
Last Updated: 15 Aug 2017 09:41 by ADMIN
ADMIN
Created by: Peter
Comments: 0
Category: Editors
Type: Feature Request
2
Add support for case sensitivity search in the suggested elements.
Unplanned
Last Updated: 15 Aug 2017 09:38 by ADMIN
RadAutoCompleteBox - add functionality that allow you to show Popup without typing any char.
Unplanned
Last Updated: 15 Aug 2017 09:38 by ADMIN
ADMIN
Created by: Peter
Comments: 0
Category: Editors
Type: Feature Request
4
RadMaskedEditBox does not support G mask
Unplanned
Last Updated: 15 Aug 2017 09:36 by ADMIN
Currently all spell checker dialogs are not accessible for customization.
Unplanned
Last Updated: 15 Aug 2017 09:36 by ADMIN
ADMIN
Created by: Jack
Comments: 0
Category: Editors
Type: Feature Request
0
first digit entered 3 would display 0.03
second digit 5 entered would display 0.35
third digit 0 entered  would display 3.50
Unplanned
Last Updated: 15 Aug 2017 09:36 by ADMIN
Currently there can only be one delimiter in the autocomplete box. Different users might be accustomed to using different delimiters, even one user using several delimiters.
Unplanned
Last Updated: 15 Aug 2017 09:33 by ADMIN
ADMIN
Created by: Stefan
Comments: 0
Category: Editors
Type: Feature Request
5
IMPROVE. RadTextBoxControl - add right to left support
Unplanned
Last Updated: 15 Aug 2017 09:33 by ADMIN
Currently, this can be achieve with this code:
  TextInfo textInfo = new CultureInfo("en-US", false).TextInfo;
        bool updating = false;
        void radTextBox1_TextChanging(object sender, TextChangingEventArgs e)
        {
            if (!updating)
            {
                int pos = radTextBox1.TextBoxElement.TextBoxItem.SelectionStart;
                updating = true;
                radTextBox1.Text = textInfo.ToTitleCase(radTextBox1.Text);
                radTextBox1.TextBoxElement.TextBoxItem.SelectionStart = pos;
                updating = false;
            }
        }
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
Unplanned
Last Updated: 15 Aug 2017 09:33 by ADMIN
ADD. RadTextBox - there should be a mode whether the undo should bring back the previous word or to work for each character
Unplanned
Last Updated: 15 Aug 2017 09:33 by ADMIN
ADMIN
Created by: Stefan
Comments: 0
Category: Editors
Type: Feature Request
2
ADD. RadTextBox - add redo functionality
1 2