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

RadBusyIndicator in SlideView

10 Answers 126 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.
Matheus
Top achievements
Rank 2
Matheus asked on 23 Mar 2012, 11:20 PM
Greeting guys.

Is there a way to remove the RadBusyIndicator in the SlideView? It appears for some items when they are loading and I want to make my own customization of it. Without using the BusyIndicator.

I want to make something like this:

<telerikPrimitives:RadSlideView.ItemContainerStyle>
    <Style TargetType="telerikSlideView:SlideViewItem">
        <Setter Property="BusyIndicatorStyle" Value="{x:Null}" />
    </Style>
</telerikPrimitives:RadSlideView.ItemContainerStyle>

Since I already got my own customization of the item preview template:

<telerikPrimitives:RadSlideView.ItemPreviewTemplate>
    <DataTemplate>
        <StackPanel HorizontalAlignment="Center" VerticalAlignment="Center">
            <Image Source="{Binding FileThumb}" Width="99"/>
            <TextBlock FontFamily="Segoe WP Light"
                        Margin="0, 6, 0, 0"
                        Foreground="{StaticResource PhoneSubtleBrush}"
                        FontSize="{StaticResource PhoneFontSizeLarge}"
                        Text="loading" />
        </StackPanel>
    </DataTemplate>
</telerikPrimitives:RadSlideView.ItemPreviewTemplate>

Thanks in advance!

10 Answers, 1 is accepted

Sort by
0
Accepted
Kiril Stanoev
Telerik team
answered on 26 Mar 2012, 09:53 AM
Hi Matheus,

Thank you for contacting us. You can try setting the Visibility property within BusyIndicatorStyle

<telerikPrimitives:RadSlideView.ItemContainerStyle>
    <Style TargetType="telerikSlideView:SlideViewItem">
        <Setter Property="BusyIndicatorStyle">
            <Setter.Value>
                <Style TargetType="telerikPrimitives:RadBusyIndicator">
                    <Setter Property="Visibility" Value="Collapsed" />
                </Style>
            </Setter.Value>
        </Setter>
    </Style>
</telerikPrimitives:RadSlideView.ItemContainerStyle>

Give it a try and let me know if it works for you. I'd be glad to further assist you.

Greetings,
Kiril Stanoev
the Telerik team
Sharpen your .NET Ninja skills! Attend Q1 webinar week and get a chance to win a license! Book your seat now >>
0
Matheus
Top achievements
Rank 2
answered on 26 Mar 2012, 07:31 PM
Thanks a lot for once more solving my issue in the shortest time possible.

Congratulations, keep up with the great work!
0
Praveen
Top achievements
Rank 1
answered on 11 Dec 2012, 12:14 PM
Hi,

I am using RadSlideView control for Slide show of Images. I want to show the loading animation for each item till the image(fetching from uri) is loaded.
Please guide me on how to do it.

Thankyou
0
Kiril Stanoev
Telerik team
answered on 11 Dec 2012, 03:37 PM
Hello Praveen,

 Could you please take a look at this help article and let me know how it goes.

Greetings,
Kiril Stanoev
the Telerik team
Have a suggestion or face a problem - you can use the Ideas & Feedback portal to submit ideas, feedback and vote for them.
0
Praveen
Top achievements
Rank 1
answered on 12 Dec 2012, 05:11 AM
Hi

I have gone through it already. The problem is the indicator disappears in few milli seconds with out bothering about the Image. How to change that behavior. Lets say I am loading an image from Uri(not from the project) , then it takes more time but the indicator disappears. I am not very good with XAML. It probably has something to do with this
<Setter Property="InitialDelay" Value="0:0:0"/>

As of now I am using extra Indicator control and binding its Isrunning property to a bool which changes when the Image is loaded.

Thank you.

0
Todor
Telerik team
answered on 14 Dec 2012, 04:00 PM
Hello Praveen,

Thank you for reporting this issue. We are going to fix it as soon as possible and let you know when the fix is ready. I have updated your telerik points accordingly.

Greetings,
Todor
the Telerik team
Have a suggestion or face a problem - you can use the Ideas & Feedback portal to submit ideas, feedback and vote for them.
0
Alexander
Top achievements
Rank 1
answered on 23 Jul 2013, 08:23 AM
Hi,
when I try to make even in an empty SlideView the Busy Loader is still shown. How can i disable this one? I have tried Kiril Stanoev suggestion but it didn't work. Please help.

thank you for all of your support it makes working with telerik a lot more fun :)
0
Alexander
Top achievements
Rank 1
answered on 23 Jul 2013, 08:37 AM
Hi,
This article helped me a lot :)
thank you for all of your support it makes working with telerik a lot more fun :)
0
Eng
Top achievements
Rank 1
answered on 26 Feb 2014, 08:29 AM
I've the same problem the busy indicator didn't display when loag images or go to next item in slide view 
0
Valentin.Stoychev
Telerik team
answered on 03 Mar 2014, 10:03 AM
Hi,

This is a very old thread - please submit a new ticket in order to see what is your exact problem. Please send as source code or anything else that can help us understand the issue if possible.

Regards,
Valentin.Stoychev
Telerik
If you want to get updates on new releases, tips and tricks and sneak peek previews directly from the developers working on the UI for Windows Phone, subscribe to the blog feed now.
Tags
SlideView
Asked by
Matheus
Top achievements
Rank 2
Answers by
Kiril Stanoev
Telerik team
Matheus
Top achievements
Rank 2
Praveen
Top achievements
Rank 1
Todor
Telerik team
Alexander
Top achievements
Rank 1
Eng
Top achievements
Rank 1
Valentin.Stoychev
Telerik team
Share this question
or