Telerik Forums
UI for WinForms Forum
1 answer
124 views

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

Nadya | Tech Support Engineer
Telerik team
 answered on 01 Aug 2019
3 answers
593 views

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

Romel
Top achievements
Rank 1
 answered on 31 Jul 2019
1 answer
81 views
I am binding a Datasource to RadCheckedDropDownList. This RadCheckedDropDownList have checked items. TextBlockFormatting not working binding time (Figure 1).
After binding i checked or unchecked item TextBlockFormatting working properly(Figure 2). I need a RadCheckedDropDownList like Figure 2..
Waiting for your favourable response.


Binding code...
RadCheckedDropDownList1.DataSource = Nothing
RadCheckedDropDownList1.CheckedMember = "vaIsProductVariant"
RadCheckedDropDownList1.DisplayMember = "ProductVariantValueID"
RadCheckedDropDownList1.ValueMember = "VariantValue"
RadCheckedDropDownList1.DataSource = value


Formatting Code....
Private Sub chkVariantValue_TextBlockFormatting(sender As Object, e As TextBlockFormattingEventArgs) 

        Dim token As TokenizedTextBlockElement = TryCast(e.TextBlock, TokenizedTextBlockElement)

        If token IsNot Nothing Then
            token.GradientStyle = Telerik.WinControls.GradientStyles.Solid
            token.BackColor = ColorTranslator.FromHtml(TokenColor)
            token.BorderColor = ColorTranslator.FromHtml(TokenColor)
            token.SmoothingMode = Drawing2D.SmoothingMode.HighQuality
            token.Shape = New RoundRectShape
        End If

End Sub
Dess | Tech Support Engineer, Principal
Telerik team
 answered on 30 Jul 2019
4 answers
457 views

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;
}

Dess | Tech Support Engineer, Principal
Telerik team
 answered on 30 Jul 2019
1 answer
367 views
Hi,
Is there anyway to retrieve the ValueMember value of GridViewComboBoxColumn in the CellEndEdit ? Thanks.
Dess | Tech Support Engineer, Principal
Telerik team
 answered on 30 Jul 2019
10 answers
262 views

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"));
        }
    }
}
Dimitar
Telerik team
 answered on 30 Jul 2019
4 answers
684 views
Hi! I've found the TextPlacement property of DataLayoutControlItem, but the control is kept to the right of the label. Is it possible to place the control under the label with their lefts aligned?
Dimitar
Telerik team
 answered on 30 Jul 2019
4 answers
77 views

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.

 

Kun
Top achievements
Rank 2
 answered on 29 Jul 2019
2 answers
274 views

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.

 

Dess | Tech Support Engineer, Principal
Telerik team
 answered on 29 Jul 2019
9 answers
603 views

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

Dess | Tech Support Engineer, Principal
Telerik team
 answered on 29 Jul 2019
Narrow your results
Selected tags
Tags
GridView
General Discussions
Scheduler and Reminder
Treeview
Dock
RibbonBar
Themes and Visual Style Builder
ChartView
Calendar, DateTimePicker, TimePicker and Clock
DropDownList
Buttons, RadioButton, CheckBox, etc
ComboBox and ListBox (obsolete as of Q2 2010)
ListView
Chart (obsolete as of Q1 2013)
Form
PageView
MultiColumn ComboBox
TextBox
RichTextEditor
Menu
PropertyGrid
RichTextBox (obsolete as of Q3 2014 SP1)
Panelbar (obsolete as of Q2 2010)
PivotGrid and PivotFieldList
Tabstrip (obsolete as of Q2 2010)
MaskedEditBox
CommandBar
PdfViewer and PdfViewerNavigator
ListControl
Carousel
Diagram, DiagramRibbonBar, DiagramToolBox
GanttView
Panorama
New Product Suggestions
Toolstrip (obsolete as of Q3 2010)
VirtualGrid
AutoCompleteBox
Label
Spreadsheet
ContextMenu
Panel
Visual Studio Extensions
TitleBar
Documentation
SplitContainer
Map
DesktopAlert
ProgressBar
CheckedDropDownList
Rotator
TrackBar
MessageBox
SpinEditor
StatusStrip
CheckedListBox
Wizard
ShapedForm
SyntaxEditor
TextBoxControl
LayoutControl
CollapsiblePanel
Conversational UI, Chat
DateTimePicker
TabbedForm
CAB Enabling Kit
DataEntry
GroupBox
ScrollablePanel
WaitingBar
ScrollBar
ImageEditor
Tools - VSB, Control Spy, Shape Editor
BrowseEditor
DataFilter
ColorDialog
FileDialogs
Gauges (RadialGauge, LinearGauge, BulletGraph)
ApplicationMenu
RangeSelector
CardView
WebCam
BindingNavigator
PopupEditor
RibbonForm
Styling
TaskBoard
Barcode
ColorBox
Callout
FilterView
PictureBox
VirtualKeyboard
NavigationView
Accessibility
DataLayout
ToastNotificationManager
ValidationProvider
CalculatorDropDown
Localization
TimePicker
ButtonTextBox
FontDropDownList
Licensing
BreadCrumb
Security
LocalizationProvider
Dictionary
Overlay
Separator
SparkLine
TreeMap
StepProgressBar
SplashScreen
Flyout
ToolbarForm
NotifyIcon
Rating
TimeSpanPicker
BarcodeView
Calculator
OfficeNavigationBar
TaskbarButton
HeatMap
SlideView
PipsPager
AIPrompt
TaskDialog
DateOnlyPicker
TimeOnlyPicker
+? more
Top users last month
Henri
Top achievements
Rank 2
Iron
Iron
Iron
SUNIL
Top achievements
Rank 2
Iron
Iron
Iron
David
Top achievements
Rank 1
Jackson
Top achievements
Rank 1
Iron
Iron
Tim
Top achievements
Rank 3
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Henri
Top achievements
Rank 2
Iron
Iron
Iron
SUNIL
Top achievements
Rank 2
Iron
Iron
Iron
David
Top achievements
Rank 1
Jackson
Top achievements
Rank 1
Iron
Iron
Tim
Top achievements
Rank 3
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?