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.