I have a situation where I have a bunch of Rad Controls (RadTextbox, RadSpinEditor, RadDropDownList) on a User Control. That User Control is then injected into a custom Windows MMC SnapIn. When I do this the TabIndex of the controls is for some reason reversed and the Tab key does not stop on the RadDropDownList anymore. When I use the same User Control inside of a Form or RadForm the TabIndex is as expected and the Tab key stop on the RadDropDownList. I have verified that the TabIndex values are sequential and in the right order and that the TabStop property is True for all the controls.
After some extra digging I found that inside of MMC SnapIn the TabIndex seems to follow the order in which the RadControls are added to the User Control in the Designer code behind file. The TabIndex property is completely ignored.
I am using UI for WinForms 2015 Q3 with C# and Visual Studio 2015.
Is there some bug when RadControls don't have a parent form and are injected into some other parent container?




Hi,
I am using CheckedDropDownList control in my UI. I have nearly 154 items to be handled with this control. So the UI becomes hanging after selecting and clearing it programmatically. I am using the following codes.
For selection
foreach (var text in dbValues)
{
foreach (RadCheckedListDataItem item in this.radCheckedDropDownList1.Items)
{
if (item.Text == text)
{
item.Checked = true;
}
}
}
For Clearing
radCheckedDropDownList1. CheckedItems.Clear();
if there any convenient way to do this??. Please advice.


hi
thanks for your great controls
i have a rich text editor that work approximatary well
when i inset table to rich text editor i stock to left. when i pull it somewhere else i stock to the left again.
as in ms word we can put table everywhere by pull it.
another issue with table is when i put it in rich text editor when rich text layout mode is not paged, i cant resize it(the options for resizing no appear). but when i set layout mode to paged i can resize it.
i have issue about flow direction. could you please tell me how i can left to right and right to left like in ms word?
thanks in advanced.

I have a ListView with the ViewTyp-property set to IconsView.
The icons contains both an image and text.
My problem is that only about 15 characters is shown in the icon. Overflowing text isn't shown.
Is there a way to automatically expand the icon size so that all the containing text is shown?

Hi have a problem showing data with a two level hierachy... I have followed the documentation and tutorials on this subject, creating child templates and setting relations etc...
I am displaying Candidates assigned to a single booking.
The top level displays the Candidate Name (and includes the CandiateId)
The next level displays skills (which includes the skill Id, but NOT the CandidateId - This data is actually associated to the single booking, so repeated under every candidate)
The third level displays the pay per skill AND per candidate (So needs to link to SkillId on the level above and link to the Candidate ID 2 levels above)
I have added the GridViewRelation for the third level to the second, but when I add the relation from the third level to the first, it seems to be simply ignored.
Can anyone help?

Hi,
I am usingRadListControl to show some bound data and implemented drag-drop following the instruction given here. The Drag drop works okay, but I need to implement scrolling while dragging an item so that it can be dropped anywhere the user wants to. I've tried to search for it, but was not successful. Could anyone please provide any solution or workaround for this?
Thanks
