Hi,
I would like to display the label inside the bubble series, I have changed in the label definition VerticalAlignment to center but it is shown now in the bottom of the bubble.
Can any one help me to fix this issue?
Thanks
Hello
I want still opening MenuItem's popup when I open new floating pane by ToolWindow.
for example, VisualStudioDocking_WPF in Docking example source code, it worked I expected.
in that sample,
1. ToolBox pane, make a floating pane.
2. Open View 's menu popup in Menu bar.
3. Repeat click to ToolBox item in popup. (check and uncheck).
then also open and close ToolBox pane(floating) and View's menu item popup still opened. (that's exactly what I want)
It is implemented by RadMenuItem in MenuBars.
And I implemented like VisualStudioDocking_WPF sample, but I didn't use RadMenuItem, using WPF control MenuItem and set StaysOpenOnClick="True".
Then docked panes doesn't matter. (still opened menu item's popup)
But floating panes not worked what I want.(Popup close when open or close floating pane)
- I guess MenuItem lost focus when open or close floating pane, so popup also closed.-
I want still open popup like VisualStudioDocking_WPF sample.
How can I get it without RadMenuItem?

I have 2 RadTileView in two different tab from a RadTabControl.
The first RadTileView can reorder its items and there is a binding with the position property to reorder the items in the second RadTabControl.
It works well until I select the second tab and show the second RadTileView where the items are ordered like the first one as I want.
But now if I return in the first tab and drag some items, I have some blank spaces that appears and my items are disappearing.
How can I fix this?

We're dealing with a very old version (2012.2.912.40) of the map control and using the Bing Maps provider. We've just had a couple users run into an ArgumentExpcetion getting thrown when it tries to utilize the IComparer.Compare method inside Telerik.Windows.Controls.Map.FileCacheBase.GetMetadata.
We've gone 5 years without ever encountering it, and then having a couple occurrences worries us. One user repaved their machine and the issue didn't resurface. Search hasn't revealed anything similar, so we were wondering if you've experienced this before and if maybe a newer version fixes the issue so we just need to upgrade.
Appreciate any help,
Travis
Here is the stack trace of the exception:
Exception stack traces: (ArgumentException) Unable to sort because the IComparer.Compare() method returns inconsistent results. Either a value does not compare equal to itself, or one value repeatedly compared to another value yields different results. IComparer: 'System.Array+FunctorComparer`1[Telerik.Windows.Controls.Map.MemoryCache+ICacheRecordMetadata]'.
at System.Collections.Generic.IntrospectiveSortUtilities.ThrowOrIgnoreBadComparer(Object comparer)
at System.Collections.Generic.ArraySortHelper`1.Sort(T[] keys, Int32 index, Int32 length, IComparer`1 comparer)
at System.Array.Sort[T](T[] array, Int32 index, Int32 length, IComparer`1 comparer)
at System.Collections.Generic.List`1.Sort(Comparison`1 comparison)
at Telerik.Windows.Controls.Map.FileCacheBase.GetMetadata()
at Telerik.Windows.Controls.Map.FileCacheBase.SaveFilesThread()
at System.Threading.ThreadHelper.ThreadStart_Context(Object state)
at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)
at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)
at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state)
at System.Threading.ThreadHelper.ThreadStart()

Hello Team,
When i mouse over/focus on RadAutoCompleteBox control and try scrolling using mouse wheel, i would not be able it..how to overcome the issue
Hi
I want to have a deafult combobox at the end of listbox to add new listitem based on selection of item in combobox.
It is similar to new row feature in radgridview.
Is there any option like that or I can customize listbox template to have such feature?
Regards,
Nagasree.

hi,
I am trying to create a ribbon menu from a json file. Tabs ands groups are being displayed. But buttons are not. instead, the class names of the buttons are displayed as text and they can not be clicked. what could be the reason ? any example of such system would be appreciated.
so here are my business objects:
01.public class RibbonTab {02. public string header { get; set; }03. public List<RibbonGroup> ribbonGroups { get; set; }04.}05. public class RibbonGroup {06. public string header { get; set; }07. public List<RibbonButton> ribbonButtons { get; set; }08.}09. public class RibbonButton {10. 11. public string text { get; set; }12. public string icon { get; set; }13. public int size { get; set; }14. public string parentPage { get; set; }15. 16. public string ButtonText { get { return text; } }17. public Telerik.Windows.Controls.RibbonView.ButtonSize ButtonSize18. {19. get {20. return (Telerik.Windows.Controls.RibbonView.ButtonSize)size;21. }22. }23.}
here is my view:
<UserControl.Resources> <Style TargetType="{x:Type telerik:RadRibbonButton}"> <Setter Property="Text" Value="{Binding ButtonText}" /> </Style> <Style TargetType="telerik:RadRibbonGroup"> <Setter Property="Header" Value="{Binding header}" /> <Setter Property="ItemsSource" Value="{Binding ribbonButtons}" /> </Style> <Style TargetType="telerik:RadRibbonTab"> <Setter Property="Header" Value="{Binding header}" /> <Setter Property="ItemsSource" Value="{Binding ribbonGroups}" /> </Style> </UserControl.Resources>
<telerik:RadRibbonView ItemsSource="{Binding RibbonTabs}" />
<telerik:RadPanelBar Margin="7,7,0,25" HorizontalAlignment="Left" Width="129" Background="#FFEFEFEF" MaxHeight="400"> <telerik:RadPanelBarItem Header="Network Connections" Height="40" Background="#FFEFEFEF" FontFamily="Segoe UI" FontSize="12"> <telerik:RadPanelBarItem Header="Delete Items" /> <telerik:RadPanelBarItem Header="Inbox" /> <telerik:RadPanelBarItem Header="Send Items" /> <telerik:RadPanelBarItem Header="OutBox" /> <Button Content="Button" Style="{StaticResource LinkButton}" Height="29" Width="82" HorizontalAlignment="Left" Name="button1" VerticalAlignment="Top" Click="button1_Click" /> <telerik:RadPanelBarItem Header="Search Folders" /> </telerik:RadPanelBarItem>