public struct ObjNodeProperty
{
private string _PropertyName;
private string _PropertyType;
private string _PropertyValue;
private List<ObjNodeProperty> _InternalValues;
}
I am trying to bind a List<ObjNodeProperty> but what I want that for each _internalValues and even within each _internalValues it should create a childe template. There is no restriction on how many level deep a particular ObjNodeProperty object could be. Also on the grid I only want two columns of _PropertyName and _PropertyValue. How do I restrict the binding to only those two column.
Thanks for the help
Hi at Telerik
I have found an example of the width being set on each column in a RadMultiColumnComboBoxElement.
private void radGridView1_CellBeginEdit(object sender, GridViewCellCancelEventArgs e)
{
if (this.radGridView1.ActiveEditor is RadMultiColumnComboBoxElement)
{
((RadGridView)((RadMultiColumnComboBoxElement)this.radGridView1.ActiveEditor).EditorControl).Columns[0].Width = 200;
}
}
Is there any way to change the Font of the control, in a normal RadMultiColumnComboBox the Rowformatting and ViewCellformatting events would be the way to change font on rows and headers?
the font of the RadMultiColumnComboBoxElement needs to be the same as the RadGrid that holds the element!.
I hope there is a solution. :)
Morten.