When I call the RadSpellChecker control to spellcheck a textbox it is slow the first time:
RadSpellChecker.Check(txtBox, SpellCheckingMode.AllAtOnce);
Sometimes the RadSpellChecker window appears behind the parent window. Also, if I click on the application icon on the task bar, the RadSpellChecker window goes behind the parent window. I can deal with this, but my users can't. Is there a setting that I'm missing to set the RadSpellChecker control to be the topmost window?
Hello,
I'm trying to add a RadGridView in my ModernUINavigationApp and I'm not capable of making it work. I have uploaded a simple proyecto to DropBox:
https://www.dropbox.com/s/7wqyisvdywcx817/ModernUINavigationApp3.zip?dl=0
I just made a copy from telerik demos but I can't even see the RadGridView on Design.
Could you please check it out and tell me what I'm doing wrong.
Many thanks.
Hi there,
I use the RadTimeLine in one of my controls and it works perfectly as expected. Now, I try to use the same RadTimeLine inside of the DropDownContent of the RadDropDownButton and it is not showing up except for the scrollbar on the bottom. Is this combination not supported? Or how do I get the RadTimeLine to display correctly inside the RadDropDownButton?
Cheers,
Marcel
Is this control supported on .NET 4.0 Client Profile? Not sure why it wouldn't be. but I am getting the following error:
Error 27 The tag 'TileGroup' does not exist in XML namespace 'http://schemas.telerik.com/2008/xaml/presentation'.
Is it possible to drag & drop all day events that are displayed in the AllDayArea? My custom DragDropBehavior isn't getting called.
I only found one Telerik demo that allows AllDayEvents--the "ScheduleView Configurator". Also in this demo, all day events can't be dragged to other days.
Is it possible to drag all day events?
Dear support,
I need to represent hierarchical data. The presentation is similar to a Gantt chart, but in which instead of the graphics for the resources, columns with hour values (more than 24 columns) are displayed. Within these numerical values I can scroll horizontally. In addition to this I need two columns with a summary of each row on the right side.
That is why I am planning two or three TreeListViews to place side by side: the left displays the hierarchy (projects, subprojects, tasks, developers, ...) and the right one(s) displays the hour values and the summaries.
According to the thread "Scrolling two Grids" (http://www.telerik.com/forums/scrolling-two-grids-f949e02b84ab) I have to synchronize the vertical scrolling and the expanding/collapsing of hierarchical rows of two ore more TreeListViews.
How do I achieve this?
Thanks in advance
Marcus
Hi,
I need to do a binding with a simple generic list of Decimal ( LIST<Decimal> ).
This list<> contain de data i need to bind in my xaml UserControl in C# windows project.
How must i proceed PLEASE ?
When a set the ItemsSource to this list<> this doesn't work...
THANKS for one example please

Dear
Telerik Support Team,
I am using
version 2015.2.623.45 to replace Syncfusion components with Telerik ones.
Now is Docking
turn. One of customer request is to open different tools and dock them in a
Document view. Each tool (a User Control) has it’s own Ribbon that has to be
merged with the one on the main window. I succeeded in my porting but to fulfil
all requirements I need also to know (with an event) when a document-docked
control has been selected. I did not find an event to hook that could be used.
In attachment,
you can find a sample project.
Can you
help me?
Thank you
Domenico
Hi,
I implemented some custom connections, deriving them from RadDiagramConnection. My connections have their own properties and visual aspect (defined using styles). I'd like to use the Telerik connection tool to draw my custom connection: how can i set the custom connection type to the connection tool?
Thank you in advance
Paolo

I have an issue with RadMaskedNumericInput where the value returned only has 1 decimal even the 2 decimals were input.
The xaml looks like this:
<telerik:RadMaskedNumericInput Name="AddHours" Width="75" Mask="#,###.##" SelectionOnFocus="SelectAll" Value="{Binding AddHours}" UpdateValueEvent="LostFocus" Culture="en-CA" Grid.Column="3" Grid.Row="1" HorizontalContentAlignment="Right" HorizontalAlignment="Left" VerticalAlignment="Top" Margin="3" Padding="2" Style="{StaticResource HoursStyle}" PreviewKeyDown="RadMaskedNumericInput_PreviewKeyDown" />Bound Property
public decimal AddHours{ get { return addHours; } set { if (addHours != value) { addHours = value; OnPropertyChanged("AddHours"); } }}