Hi,
We have scenario, where we need two RadScheduleViews for user to be able to use drag and drop between them.
They are both bound to the same AppointmentsSource collection but each has different ResourceTypesSource collection and here is the issue: Both these RadScheduleViews instances behave like they had the same ResourceTypesSource collection.
So it seems to me like some strange bug, especially when I am moving this functionality from Silverlight to WPF and it works OK in the Silverlight version.
So is it possible to fix this problem?
This is quite a follow up of this thread:
http://www.telerik.com/forums/freezing-row-in-timeline-view-in-radscheduleview
We are using latest version of Telerik controls.
I have prepared a MCV example where it is possible to see it, it is only not available to attach it here, but I can send it somehow.
Thank you,
Jiri
Hi.
I using RadDocking for several languages with Resouce dictionary(DynamicResource in xaml).
if I Switching languages at runtime without LoadLayout() function then it works.
But If i use LoadLayout() at startup then switching language not working.
(Switching Style at runtime is still works with LoadLayout() )
Can anybody help this problem?
Hello,
I have a RadDiagram and would like to add a visual zoom control at the bottom. I was thinking of using RadRichTextBoxStatusBar as it has the zoom slider.
1) How can I bind the zoom both ways for the diagram and that slider? I don't see a zoom property for the RadRichTextBoxStatusBar.
2) The zoompercentchanged event doesn't seem to fire.
Amiel
Dear Telerik-Team,
I am working on the migration from standard Microsoft controls to Telerik WPF UI 2017/2 suite for our software products.
Is there any way to stretch the RadRibbonGroup from the left to the right of the window (please see attached file)?
Best regards,
Markus
Hi,
I am using the RadTileView to load photos and I set the dragmode to slide, but what happens was, when you drag a photo into a different position the other photos moves in different direction as long there is a vacant slot. Is there a way to control the movement of the other objects(photos) in one direction? let say move side ways going to the right.
Thank you
Paul Villarin
Hello,
I have an application that follows the MVVM pattern that contains data presented in different RadGridView items.
My grids are bound to different QueryableCollectionViews exposed as IEnumerable properties in a view model.
Lets say I have a refresh-button that grabs data from a webapi and I want to update the grids with it.
Is there a way to refresh the QueryableCollectionView with the data without loosing filters, groupings etc?
Today I re-create my QueryableCollectionViews and manually add possible filters etc. The issue I'm having right now is that while the filters do work, the funnel icons for the filtered columns does not light up, so the client might not realise the grid is filtered.
Is there an easy way around this?
Thanks in advance,
Fredrik
To bind the IsExpanded Property to my own IsExpanded property I use the following snippet:
<Style TargetType="{x:Type telerik:RadTreeViewItem}" x:Key="ItemContainerStyle" >
<Setter Property="IsExpanded" Value="{Binding Path=IsExpanded,Mode=TwoWay}"/>
</Style>
This works fine so far but the highlight color of the nodes turned from blue into grey. How can I keep the original style and only add the setter property?