Hello everyone, I have hidden the radApplicationMenuButton control. The hiding method is as shown in the figure above, but when I run the program, I find that the hidden control is still displayed. I want the ribbonTabFile control on the right to be displayed directly from the far left. , how should I set up, thank you!
Best regards,
Kevin

Hello,
I wonder if it is possible to combine the RoundRectShape with EnableHighlight and EnableBorderHighlight while also have the highlighted parts considering the rounded corners in order to not paint further as those.
Now, if I combine those, I have 3 issues (see picture):
1. the complete "rectangle" button area is highlighted, means: the rounded corners are ignored
2. the highlighted border is also a rectangled border on the corners and not round.
3. when moving the mouse away (near the corners), the "lost focus" event (or something similar) seem not to fire correctly - thereby the highlighted area is still shown
Can this be resolved and if so: how?
Thanks

Hello,
I was wondering how to do the following on a DateTimePicker, if it is possible at all: apply one theme to the main control and another to its calendar.
Something like this:
RadDateTimePicker1.ThemeName = A
Dim calendarBehavior As RadDateTimePickerCalendar = TryCast(RadDateTimePicker1.DateTimePickerElement.GetCurrentBehavior(), RadDateTimePickerCalendar)
Dim calendar As RadCalendar = TryCast(calendarBehavior.Calendar, RadCalendar)
calendar.ThemeName = B
How do I parse an 'a href' tag in RadDesktopAlert content so that, after clicking the link, the page will open?
Br

Hi,
How can I change the selected text colour of a RadDateTimePicker?
I'm not sure if this is possible, I'm afraid the DateTimePicker uses a MaskedEditBox, which uses a RadTextBox, which in turn uses a normal TextBox from .Net... so in the end I don't think it can be done, am I right? If so, is there a viable alternative?
Also, why are most edit controls based on RadTextBox instead of RadTextBoxControl? Wouldn't it be better to use the latter and take advantage of the fact that it has more Telerik features built in?
Thanks.

Hello everyone! These days, I am doing some research with the RadDock control and encountering a difficulty when I'm trying to completely remove the borders and visually merge individual DockWindow elements. As far as I can see, achieving this requires removing some additional spitter elements, but I haven't had much success so far.
I would appreciate your help with this.
Kind Regards,
Simeon

I have a combobox column that shows an Enum value and a second column, a text column, that shows descriptive text about the Enum.
This is a bound grid and the Enum is a property in the bound object while the descriptive text is a computed property.
When I select a value from the combobox, I want the descriptive text column to change immediately - without having to wait 'til the user leaves the combobox cell.
Using the ValueChanged event I can catch the combobox change immediately, but I haven't been able to show the change in the text column. The property in the DataBoundItem hasn't changed yet, and even if it had I don't know that the text column would refresh automatically. I've tried setting the text value, but it doesn't work. I've tried calling Refresh() and EndEdit() -- also nothing.
I can't be the only one doing this. How's it done?
Thanks in advance.

I want to prevent the radDateTimePicker from getting focus with TabStop set to FALSE and the control is enabled. I can do this with TextBoxes and CheckBox, etc, but this control, no matter what I do, even if I set the internal controls to TabStop = false, the control still gets focus.
Looking for a solution
TIA

I am using the example from Customizing RadWaitingBar - RadWaitingBar - Telerik UI for WinForms that DASH Stile. The problem is, I want to be able to view the text through it. Based on the example code there (attached here), the texted is hidden behind the color bars. The example just above this example on this page that shows the text upside down and right justified, shows the text visible, however, when I take that code an apply it to the lastest telerik release, the text is not visible. I am sure this is probably a settings I am not setting, Any help would greatly help me here.
Here is a sample screen shot
Here is the code I am using
private void ShowWaitingBar()
{
radWaitingBarElementBase.ShowText = true;
radWaitingBarElementBase.Text = "Hello World";
radWaitingBarElementBase.WaitingStyle = Telerik.WinControls.Enumerations.WaitingBarStyles.Dash;
WaitingBarSeparatorElement dash = radWaitingBarElementBase.SeparatorElement;
dash.NumberOfColors = 2;
dash.BackColor = Color.Blue;
dash.BackColor2 = Color.LightBlue;
dash.SweepAngle = 45;
dash.StepWidth = 15;
dash.SeparatorWidth = 10;
dash.GradientPercentage = 0.25f;
radWaitingBarElementBase.StartWaiting();
}

Hi Team Telerik,
I just wanted to add new row in grid when user press Enter Key.
By default row is added in grid when user clicks somewhere in grid this is not needed.
Hope you understand my requirements.
Thanks,
Shubham Jain
