How do I disable context menus "EditHeader" and "EditFooter", so that they don't show up?
How do I remove (rather than disable) context menu item "Hyperlink..."?

I want to create a new RadDocument and serialize it to byte array. And I want to set default font to something else than "Verdana". Let's use "Comic Sans MS" size 24 for instance. What should I do between "new RadDocument()" and "RtfFormatProvider.Export" (also "XamlFormatProvider.Export") so that word "Verdana" is not found in serialized byte array?
Also, when I want to deserialize this byte array into RadDocument are there some extra steps I should do to prevent Verdana from somehow creeping back in (unless the user explicitly changes some text to Verdana)?

Hi,
I have a commandbarmaskededit box that is not restricted users to numeric entry only. In the objects properties under the expanded CommandBarMaskedTextBoxElement I have the Mask as ### and the MaskType as Standard and I have also tried it with Numeric. Neither options prevent the user from enter any alphanumeric characters instead of restrict in to just numeric. Thanks!

Hi. I'm using Telerik UI for WinForms Q3 2014(v2014.3.1104.40)
I have a problem about memory leak between creating and disposing RadGridView.
I already have searched many threads, but I coudn't find the answer.
So I make a small test project to test the memory leak.
In image files, one tb(RadGridView) is just created. Not includes data binding or any columns/rows.
Just empty thing.
And using 2 buttons, I create and remove tb repeatly.
(In removing process,
tb.controls.Dispose(), tb.Dispose(), tb = null, even GC.Collect() are performed.)
However, memory leak is increasing more and more.
I tested using datagridview in C# basic control and it doesn't make a leak.
If I did a mistake, tell me what's wrong.
Need a solution to prove this case.
Best regards.
img01.png = tb is Dock.Left. And 2 buttons for disposing tb, creating tb.
img02.png = source code of remove/create button event.
When a theme is applied to ribbon bar of rich text editor the icons are also changed. When I extract in code Image property of some button (for instance richTextEditorRibbonBar1.buttonInsertImage.Image) I get the default non-themed image. But themed image is shown in the form. How do I access themed image from buttonInsertImage? How do I access this image from theme repository?


Hi I have a problem when adding the radChat1 tool
Pressing the Send Message button shows this

I override the BaseInputEditor with a trackbar editor (using code from Telerik website).
But when I change the position of the trackbar, the PropertyValueChanged event does not occur (radPropertyGrid)
What am I doing wrong?

Hi Telerik
I am using the RadDateTimePicker to allow the user to select a date and a time.
I have successfully set the MinDate and MaxDate to limite the user to a date range and I also set the MinTime and MaxTime to limit the user to an allowable timeslot.
We now require the user to be restricted to different time slots on different days i.e. Monday to Friday 09:00 - 17:00, Saturday 10:00 - 14:00 and Sunday 12:00 - 13:00 to reflect different opening hours of a shop.
When setting the MinTime and MaxTime i use the following code:
var rdtpc = this.rdtp_TargetDate.DateTimePickerElement.CurrentBehavior as RadDateTimePickerCalendar;rdtpc.ShowTimePicker = true;rdtpc.TimePicker.TimePickerElement.MinValue = DateTime.Today.Date.AddHours(9);rdtpc.TimePicker.TimePickerElement.MaxValue = DateTime.Today.Date.AddHours(17);
This is fine for a single time range, but what event do I need to wire up to allow me to set different enabled time range for different days/dates?
Thanks

Hello,
Does anybody know how to get the name of the control (Listview) when using the DragDropService >> PreviewDragOver >> e.HitTarget ?
I have got multiple listviews on a form and depending on the source the DragItem may not be dropped.
Grtz Patrick Vossen