Hello all,
how can I locate a certain row (or determine a row index) in the virtual grid by looking up a certain value?
If for example I have a list of employees with ID, Name, Address, Phone how can I locate the row with a certain Employee ID?
Also there seems to be no row collection that can be searched using Linq.
Thanks in advance.
Best regards, Ronny

I have created a custom theme that is a copy of a standard theme (I exported a .tssp file, made a copy, and started editing the copy). I would like to copy some individual elements from a different them to my custom theme (for example, the RadForm along with it's titlebar icons). So far I haven't been successful in figuring out how to do this. Is it possible? If so, could you list the steps necessary to do it? (I would prefer to keep everything contained in one custom .tssp file if possible.)
Thanks.
Craig
Hi,
I can't seem to figure out the right control to use for my task. I tried RadMaskedEditBox with all type of masking type and RadSpinEditor, but neither can get me what I need. Here is what I need:
1. This control must allow to enter only numeric values.
2. This control has to be binded to a nullable integer.
3. This control need to allow me to delete the value leaving it blank, which should assign null to the binded property. Vice versa, if I set value of the binded property to null, then control should not contain any values.
Any suggestions?
Thank you in advance.


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.
