This is a migrated thread and some comments may be shown as answers.

SlideAndZoomTransition FlowDirection Issue

5 Answers 105 Views
TransitionControl
This is a migrated thread and some comments may be shown as answers.
Pat
Top achievements
Rank 1
Pat asked on 01 Aug 2010, 02:23 AM
When I set the flow direction to right to left.  The panel will flip horizontally during the transition.  Is there a way to prevent this?

5 Answers, 1 is accepted

Sort by
0
George
Telerik team
answered on 05 Aug 2010, 09:52 AM
Hello Pat,

Thank you for reporting this bug, it helps us in improving our products. I am glad to give you Telerik points for reporting this abnormal behavior of our RadTransitionControl. We will fix this bug in one of our future releases. You can track this progress in our Public Issue Tracking System (PITS) with Issue ID = 2962.

Please do not hesitate to contact us if you require any further information.

Regards,
George
the Telerik team
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items
0
Trude
Top achievements
Rank 2
answered on 11 Nov 2010, 10:26 AM
What's the status on this? I'm using the SlideAndZoom transition and want to decide which way it slides (next/back button), but it looks weird when the content flips.
0
George
Telerik team
answered on 16 Nov 2010, 10:51 AM
Hi Jorn,

You could vote for this issue and track its progress in our Public Issue Tracking System (PITS) with Issue ID = 2962. Unfortunately, this issue is not fixed. Sorry for any inconvenience caused.

Best wishes,
George
the Telerik team
See What's New in RadControls for Silverlight in Q3 2010 on Tuesday, November 16, 2010 11:00 AM - 12:00 PM EST or 10:00 PM - 11:00 PM EST: Register here>>
0
Wesley Van den Eede
Top achievements
Rank 1
answered on 11 Jan 2011, 04:33 PM
I had the same issue, but after some investigation i managed to solve the issue using the SlideDirection property on the Transition object.
My TransitionControl is defined like this:

<telerik:RadTransitionControl Background="Transparent" x:Name="transition" Duration="00:00:00.5">
    <telerik:RadTransitionControl.Transition>
        <transitions:SlideAndZoomTransition />
    </telerik:RadTransitionControl.Transition>
</telerik:RadTransitionControl>

The code to do the transition looks like this:
var slideTransition = transition.Transition as SlideAndZoomTransition;
if (slideTransition != null)
{
    slideTransition.SlideDirection = FlowDirection.LeftToRight;
    //slideTransition.SlideDirection = FlowDirection.RightToLeft;
}
transition.Content = newContent;

Hope this helps...
0
Trude
Top achievements
Rank 2
answered on 11 Jan 2011, 09:28 PM
I had the same issue, but after some investigation i managed to solve the issue using the SlideDirection property on the Transition object.

Yes, this worked. I never thought that the transition had a flowdirection (only tried it on the control itself). Thanks a lot!

Telerik, take note and document your components and mark this one as resolved! :)
Tags
TransitionControl
Asked by
Pat
Top achievements
Rank 1
Answers by
George
Telerik team
Trude
Top achievements
Rank 2
Wesley Van den Eede
Top achievements
Rank 1
Share this question
or