static
void grid_EditorRequired(object sender, Telerik.WinControls.UI.EditorRequiredEventArgs e)
{
Telerik.WinControls.UI.
RadComboBoxEditor comboEditor = e.Editor as Telerik.WinControls.UI.RadComboBoxEditor;
if (comboEditor != null)
{
Telerik.WinControls.UI.
RadComboBox comboBoxControl = comboEditor.EditorElement.ElementTree.Control as Telerik.WinControls.UI.RadComboBox;
// Do some work with the combo box control here
}
}
However the e.Editor is always Null (the e.EditorType is typeof(RadComboBoxEditor) as expected).
I see from several postings that I would expect to have an instance of the RadComboBoxEditor in the e.Editor property, and that this event is the correct one to do what I'm trying to do.
In addition, other posts have been shown solutions which show that RadComboBoxEditor class has an Items collection, but in my edition of Rad this property does not exist, and I'm guessing my route through to the combo box items collection is through .EditorElement.ElementTree.Control.
Can you help untangle this for me ?
Hello Telerik team,
I should start by saying your tools are pretty cool.
My question has to do with the radCarousel component. I would like my form to work exactly like the RadWin demo.
i.e. Click on a menu on the left > which displays options in a carousel.
Features I would like to include in a prototype I am working on:
- Show three options in a carousel
- Click each option and have it go round the carousel like the RadWinDemo
- Hover over RadItem makes the item glow
- Launch external form on clicking on RadItem in the middle (clicking on items on the left and right should perform normal animation)
- The easing effect animation as each item is clicked or scrolled.
Question:
- Can I load a theme that accomplishes all this? If so how do I do this?
- Please provide step by step directions on how to accomplish this...
Thanks.