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.
radTxtDesc.DataBindings.Add(
"Text", this.ProTemp.Elements, "Desc");
I do not get an error at runtime, but the radTextbox shows nothing. I even set the NullText property, but it doesn't show up either. I am using the textbox within the new DataRepeater ItemTemplate which is part of the Visual Basic Powerpack 3.0. And as mentioned, the standard windows textbox works, but I really would like to be able to use the radTextbox instead of standard Windows textbox due to the extra features the radTextbox has which I really need. Any thoughts?