Hi,
I have a TableLayoutPanel that is divided to 3 rows. Each row contains a RadPanel.
Only the middle one is causing transparency issue because it's not filled with controls.
how can I get rid of this issue?
Thanks,
Karoon
Hi all,
I just encountered the most bizarre thing today while using the Rich Text Editor. I upgraded our Telerik DLLs to the most recent one available (2019 R2, 2019.2.618) and it seems like the ability to paste into the Rich Text Editor has been lost all of a sudden. I tried all I could and looked around the forums a bit to no avail. The interesting thing is that when I debug, I can "hit" the CommandExecuting event and I can see that in the code it recognizes that it is a paste command, but the text is not being pasted onto the textbox.
private void RadRichTextEditor1_CommandExecuting(object sender, Telerik.WinForms.Documents.RichTextBoxCommands.CommandExecutingEventArgs e)
{
if (e.Command is PasteCommand)
{
//the event is fired and recognizes that IT IS a PASTE COMMAND, but text is not being pasted onto the textbox
}
}
Has anyone else encountered this before. If so, can anyone point me to the right direction as to why this is happening? Thanks all.
Romel
I have a RadCheckedDropDownList that I am binding a BindingList to it. Some of the items in the list will have the CheckedMember property filled in. However, after the control loads, the items that are checked do not show up in TEXT area of the control. However, if you open the dropdown, you can see items checked. As soon as you uncheck or check an item, all the checked items do show up. This is a problem, I need the items that are checked by default to show up in the TEXT area. Below is my code that I use to bind my list to the control. Am I missing something?
private static void BindList (this RadCheckedDropDownList radDropDownList, BindingList<CheckedListItem> dropDownList, string valueMember = "Key", string displayMember = "Value", string checkedMember = "Checked")
{
radDropDownList.BeginUpdate();
radDropDownList.ValueMember = valueMember;
radDropDownList.DisplayMember = displayMember;
radDropDownList.CheckedMember = checkedMember;
radDropDownList.DataSource = dropDownList;
radDropDownList.EndUpdate();
radDropDownList.SelectedIndex = -1;
}
I've trying to get autocomplete working. After failing in my main project I created a test project with a single radtextboxcontrol and the following code from the docs, and I'm not getting any word suggestions.
I'd prefer to have something like
var items = new List{ "Matthew", "Mark", "Luke", "John"}
radTextBoxControl1.AutoCompleteItems.AddRange(items);
but that didn't work either.
Thanks.
namespace
TelerikWinFormsApp1
{
public
partial
class
RadForm1 : Telerik.WinControls.UI.RadForm
{
public
RadForm1()
{
InitializeComponent();
AddAutoCompleteItems();
}
private
void
AddAutoCompleteItems()
{
this
.radTextBoxControl1.AutoCompleteMode = AutoCompleteMode.Suggest;
RadListDataItemCollection autoCompleteItems =
this
.radTextBoxControl1.AutoCompleteItems;
autoCompleteItems.Add(
new
RadListDataItem(
"Luke"
));
autoCompleteItems.Add(
new
RadListDataItem(
"Max"
));
autoCompleteItems.Add(
new
RadListDataItem(
"Adam"
));
autoCompleteItems.Add(
new
RadListDataItem(
"Henry"
));
autoCompleteItems.Add(
new
RadListDataItem(
"Jack"
));
autoCompleteItems.Add(
new
RadListDataItem(
"Ben"
));
autoCompleteItems.Add(
new
RadListDataItem(
"Tyler"
));
autoCompleteItems.Add(
new
RadListDataItem(
"Ethan"
));
autoCompleteItems.Add(
new
RadListDataItem(
"David"
));
autoCompleteItems.Add(
new
RadListDataItem(
"Mike"
));
}
}
}
Hello,
I have a font issue only for the question mark (?) in breadcrumb. I've tried some different themes. They all have the same issue. It doesn't depend on the theme.
Please see the attached picture.
I've found a similar thread in the forum, but the solution hasn't worked for me.
https://www.telerik.com/forums/set-usemnemonic-to-false-for-breadcrumb
Thank you by advance.
I have a gridview, I want to display in Master-Child mode. But the performance is really bad when loading data. I added BeginUpdate/EndUpdate before and after I want to load or modify some binding data. But I get the following error randomly after I modify my data several times.
Hello,
I'm desperately trying to change the color of the background of my chart (inside of the axis = plot area in Excel - see attached). I tried the background property for the area, the grid... I also tried to alternate the same color in my grid.
How should I do that?
Thanks,
Mathias