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

Need to know when FilmStrip is active

4 Answers 114 Views
SlideView
This is a migrated thread and some comments may be shown as answers.
This question is locked. New answers and comments are not allowed.
Fela
Top achievements
Rank 1
Fela asked on 02 Sep 2013, 06:24 PM
How i can know when FilmStrip is activated/deactivated by user interaction?

Thanks and sorry for my bad english.

4 Answers, 1 is accepted

Sort by
0
Kiril Stanoev
Telerik team
answered on 04 Sep 2013, 08:33 AM
Hello Fela,

Thank you for contacting us. At the moment, we don't have an event that will notify you when RadSlideView toggles between its states. It is in our plans to include such an event for our next official release (middle of October). Let me know if that will work for you. 

Regards,
Kiril Stanoev
Telerik
Have a suggestion or face a problem - you can use the Ideas & Feedback portal to submit ideas, feedback and vote for them.
0
Fela
Top achievements
Rank 1
answered on 04 Sep 2013, 02:57 PM
Hi Kiril, i really need this function before the end of september, is there any trick or internal release that allows me to know when FilmStrip is active? 

Thank you and sorry for my bad english
0
Kiril Stanoev
Telerik team
answered on 05 Sep 2013, 08:36 AM
Hello Fela,

Thank you for the follow up. We'll do our best to include this functionality in our next week's internal build (most probably Thursday). We'll let you know once the update is out.

Regards,
Kiril Stanoev
Telerik
Have a suggestion or face a problem - you can use the Ideas & Feedback portal to submit ideas, feedback and vote for them.
0
Todor
Telerik team
answered on 13 Sep 2013, 02:07 PM
Hello Fela,

I just wanted to let you know that the internal build is live and you can download it from you account.

When you update your project to reference the new assemblies you will be able to use RadSlideView's new event SlideViewStateChanged. You can it to understand when the filmstrip mode gets activated by using the following approach:

private void OnSlideView_SlideViewStateChanged(object sender, Telerik.Windows.Controls.SlideViewStateChangedArgs e)
{
    if (e.OldState == Telerik.Windows.Controls.SlideViewState.Filmstrip)
    {
        //Filmstrip mode is deactivated
    }
    if (e.NewState == Telerik.Windows.Controls.SlideViewState.Filmstrip)
    {
        //Filmstrip mode is activated
    }
}

I hope this information helps. Let us know if you need further assistance.
 
Regards,
Todor
Telerik
Have a suggestion or face a problem - you can use the Ideas & Feedback portal to submit ideas, feedback and vote for them.
Tags
SlideView
Asked by
Fela
Top achievements
Rank 1
Answers by
Kiril Stanoev
Telerik team
Fela
Top achievements
Rank 1
Todor
Telerik team
Share this question
or