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

FilmStripMode Thumbnails, start at 10

1 Answer 39 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.
Florian
Top achievements
Rank 1
Florian asked on 14 Nov 2013, 11:07 AM
Hi,

I'm currently using the RadSlidView with FilmstripModeItemTemplate and I experience weird behavior with FilmStripMode.
My app reads a magazine with around of 150 larges images and shows the thumbnails with the FilmStripMode.

If I start the reading at Index 0, the thumbnails will only show at Index 11. I need to swipe after the item 10 to see the first one.
You can see a video here :
http://florian-rousselet.fr/Telerik_FilmStripMode_WP8_Issue.swf

Here is my code :

 <telerikPrimitives:RadSlideView
                x:Name="RadSlide"
                Grid.Row="1"
                ItemsSource="{Binding MagazinePages}" 
                IsFilmstripModeEnabled="True" 
                ItemRealizationMode="Default"
                IsLoopingEnabled="False"
                SelectedItem="{Binding SelectedPageItem,Mode=TwoWay}"
                >
                <telerikPrimitives:RadSlideView.ItemTemplate>
                    <DataTemplate>
                        <Grid Height="{Binding Height}"
                              Width="{Binding Width}">
                            <telerikPrimitivesSlideView:PanAndZoomImage
                                VerticalAlignment="Center"
                                ZoomMode="Free"
                                Source="{Binding BitmapImage}"                               
                                ManipulationCompleted="PanAndZoomImage_ManipulationCompleted"/>

                            <ProgressBar Style="{StaticResource CanardProgressBarStyle}"
                         Visibility="{Binding IsBusy, Converter={StaticResource BooleanToVisibilityConverter}}" />
                        </Grid>
                    </DataTemplate>
                </telerikPrimitives:RadSlideView.ItemTemplate>
                <telerikPrimitives:RadSlideView.FilmstripModeItemTemplate>
                    <DataTemplate>
                        <Grid VerticalAlignment="Center">
                            <Grid.RowDefinitions>
                                <RowDefinition Height="30"/>
                                <RowDefinition Height="Auto"/>
                            </Grid.RowDefinitions>
                            <TextBlock Text="{Binding NumPageThumbnail}"/>
                            <Image Stretch="UniformToFill"
                                   Grid.Row="1"
                                Height="300"
                                   Width="210"
                                Source="{Binding ThumbnailImage}"/>
                        </Grid>
                    </DataTemplate>
                </telerikPrimitives:RadSlideView.FilmstripModeItemTemplate>
            </telerikPrimitives:RadSlideView>

Best Regards

1 Answer, 1 is accepted

Sort by
0
Todor
Telerik team
answered on 15 Nov 2013, 02:07 PM
Hi Florian,

Thank you for writing.

We are not aware of a similar issue and we are not able to reproduce it on our side. In order to assist you further, I'd like to ask you to send us a project that we can use to reproduce the described issue. Please note, that you will need to open a new support ticket, in order to be able to attach files.
 
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
Florian
Top achievements
Rank 1
Answers by
Todor
Telerik team
Share this question
or