I don't understand the meaning or the usefullness of Autocomplete in a DropDownList
If I just have a regular DropDownList, Autocomplete-Like-Behaviour is already working fine, you type the first character, it's autocompleted.
Why having 2 different DataSources for the same input ?
radCheckedDropDownList1.DataSource = items;
radCheckedDropDownList1.ValueMember = "ID";
radCheckedDropDownList1.DisplayMember = "Label";
radCheckedDropDownList1.CheckedMember = "Checked";
radCheckedDropDownList1.AutoCompleteDataSource = items;
radCheckedDropDownList1.AutoCompleteValueMember = "ID";
radCheckedDropDownList1.AutoCompleteDisplayMember = "Label";
I do not even have an idea, which List is coming up, if I start typing ? The DropDownList, or the Autocomplete-Dropdown ?
In what situations is it useful to have this combination ?

Hi,
I have one case like this:
ID Name OpenDate Status
1 A 02/02/2018 10:00 Open
2 A 02/02/2018 15:00 Close
3 A 02/02/2018 16:00 Open
3 A 02/03/2018 8:00 Open
3 A 02/03/2018 12:00 Close
4 B 02/02/2018 10:00 Open
I want to build grid like this for specified Name. when I choose A the grid should be displayed:
Date Open Close. Open
02/02/2018 10:00 15:00 16:00
02/03/2018 8:00 12:00
How can I achieve it ?
Thanks.
Redocking doesn't show the MdiContainer where to dock when maximized
Way to reproduce:
Printscreen shows the blue rectangle which the dimensions are the dockable container that could accept the docking of this child-form.
If I do the same thing in my VisualStudio environment, as soon as I start trying to dock back, I see the possible dockable container.
Need help trying to figure out how to add custom buy/sell indicator, label and or colors to a chart that is based on the CandleStick Series. I attached a example of what i am looking to accomplish, this is a screenshot of an existing chart i created, it display the O,H,L,V, and other indicators like ema, just having a hard time trying to figure out how to add custom items like symbols (triangles, arrows, and a bar) at a specific point in date and time and display the symbol, and buy/sell label how do i accomplish this and is this possible using RadChartView?

Hi,
I need to retain the user selections committed on my form in a particular radGridView, These selections are committed to a GridViewCheckBoxColumn. Upon filtering/sorting etc the gridView data, user selections get replaced with the default view, i.e. without any selections.
Is there any way I can do that?

dtp.DateTimePickerElement.TextBoxElement.Shortcuts.Add(new RadShortcut(Keys.Control, Keys.D));
Is there a way to keep GridExpanderItems from indenting whenever
a group is applied?
Im using a radgridview (WinForms R1 2018) with a SelfReference
Relation.
no groups:
expanderItem.BoundingRectangle =
{X = 0 Y = 0 Width = 19 Height = 24}
1 group:
expanderItem.BoundingRectangle =
{X = 19 Y = 0 Width = 19 Height = 24}
2 groups:
expanderItem.BoundingRectangle =
{X = 38 Y = 0 Width = 19 Height = 24}
3 groups:
expanderItem.BoundingRectangle =
{X = 57 Y = 0 Width = 19 Height = 24}
Thanks...
Kelly Woodard

Hello everyone,
is there any way to put a RadCheckedDropDownList in a RadCommandBar in WinForms?
It seem like I should host it in a CommandBarHostItem, since it appears from the documentation that it could host either a RadElement or a Control, but the designer does not support dragging the control into it (it expects a RadElement no doubt). So I tried adding the dropdown programmatically by setting the HostedControl property of the HostItem, but the drop-down never appears. It there a way to accomplish this task?
thanks

Hi, I'm using rad page view and i want to drag and drops.
I found the solution which linked like below.
https://www.telerik.com/forums/dragdrop-between-radpageviews
This is a great answer but this can not work like visual studio's page view.
It can send the page data to another page view but it can not be independant.
For example... When we drag our each source code page in visual studio, Then visual studio will detach it to page view and
we can drag it out of it's original window area (Including pageview area).
Maybe i guess visual studio's page view will create new windows for attach/detach each page to page view.
How should i gonna do with Rad Page VIew? May i have some answer about this?
