Hello Telerik,
I tried to translate the control into german.
How can I prevent the behavior, which is shown in the picture. (Wordwrap and cut off).
Greetings
PS: Yes, we used also font scaling.

Hi,
In my code I'm adding appointments to a radScheduler like this:
Dim app As New Appointment
app = New Appointment(Convert.ToDateTime(dr("StartTime")), Convert.ToDateTime(dr("EndTime")))
app.ToolTipText = "Some text"
How can I set a delay time for the tooltip, i.e. how long the tooltip text is displayed?
Regards,
Pirjo

How do I prevent a ToolTabStrip from being disposed when it has no child panels? I'd like to allow users to redock child panels into a ToolTabStrip even if there are no child panels left.
At the moment I am getting an error "Changing children collection of an already disposed element" when the redocking is attempted.
Thanks,
-Lou
Hello.
After a few tries, I came to a method that dynamically changes shades depending on the amount of characters MaskedEditBox:
public partial class RadForm6 : Telerik.WinControls.UI.RadForm { public RadForm6() { InitializeComponent(); this.radMaskedEditBox1.TextChanged += radMaskedEditBox1_TextChanged; this.radMaskedEditBox1.TextMaskFormat = MaskFormat.ExcludePromptAndLiterals; this.radMaskedEditBox1.MaskType = Telerik.WinControls.UI.MaskType.Standard; this.radMaskedEditBox1.Mask = "000,000,000-0099"; this.radMaskedEditBox1.PromptChar = ' '; } string initialValue = string.Empty; private void radMaskedEditBox1_TextChanged(object sender, EventArgs e) { if ((radMaskedEditBox1.Value + "").Length <= 11 && this.radMaskedEditBox1.Mask != "000,000,000-0099") { this.radMaskedEditBox1.TextChanged -= radMaskedEditBox1_TextChanged; initialValue = this.radMaskedEditBox1.Value + ""; this.radMaskedEditBox1.MaskType = Telerik.WinControls.UI.MaskType.Standard; this.radMaskedEditBox1.Mask = "000,000,000-0099"; this.radMaskedEditBox1.PromptChar = ' '; this.radMaskedEditBox1.Value = initialValue; this.radMaskedEditBox1.TextChanged += radMaskedEditBox1_TextChanged; } else if ((radMaskedEditBox1.Value + "").Length >= 12 && this.radMaskedEditBox1.Mask != "00,000,000/0000-00") { this.radMaskedEditBox1.TextChanged -= radMaskedEditBox1_TextChanged; initialValue = this.radMaskedEditBox1.Value + ""; this.radMaskedEditBox1.MaskType = Telerik.WinControls.UI.MaskType.Standard; this.radMaskedEditBox1.Mask = "00,000,000/0000-00"; //this.radMaskedEditBox1.PromptChar = ' '; this.radMaskedEditBox1.Value = initialValue; this.radMaskedEditBox1.TextChanged += radMaskedEditBox1_TextChanged; } } }
I hope it helps.
Regards,
Felipe

Is it possible to set the displayed text of an appointment to be right justified? I am using the scheduler control somewhat differently, with only one appointment displayed for each day, and the text of the appointment is simply a number that tells the user the number of openings on that day. Clicking on the appointment displays further details in other controls. For the text, I am setting the Summary property of the appointment (although I could do something different if necessary).
Numbers are typically right justified, and I would like to do this in the displayed text of the appointment.

Hi,
It seems that the RadMarkupEditor never gets focus (Focused = false) even when you are typing something (in DesignView). Is this normal behavior?
Thanks,
Tom

Hi,
I cannot find Office 2013 white theme in Telerik controls. Only can find Telerik.WinControls.Themes.Office2013Dark and Telerik.WinControls.Themes.Office2013Light. Is it not supported or I need to use alternative theme?
Regards,
Hi,
What is the correct way to compile controls from source? I've opened RadControlsVS2010.sln and tried to compile this but I have a lot of errors (metadata files missing, .dll's not found).... Ok, I am using VS2012 not VS2010, I don't know whether this makes a difference????
Is this even the correct method in the first place?
Thanks.
Is there a property for RadRangeSelector that will let me control the minimum selected range? It looks like the rangeselector thumb is forcing me to a minimum selectable range of 3, which is 3% of the total 0 to 100 range. I need to be able to get it down as close as possible (with the only limitation being the radselectorthumb elements do not overlap).
Basically, I have a very large data set, and I need a selection ability in the 1 part in 30000 range. Right now the best I can do (with two cascaded radrangeselectors, one feeding the second) is 3% of 3% which is 0.09%. which is still 27 times greater mapped range than I need. If I can get the minimum selection down to 1%, then I can cascade two radrangeselectors to get me in the 1 part in 10000 range and that should be ok to get by for now.
Manoj

Hi,
I have a RadMarkupEditor on my form and I want to execute some action when the text in the editor is changed. Since this control inherits from System.Windows.Forms.UserControl we can subscribe to the TextChanged event. Unfortunately this event is never fired. Is this normal behavior? Is there any other event I could use to achieve the same?
Thanks,
Tom