Hi Syncfusion,
I have problem when using SfTabView.
When I put SfListView inside SfPullToRefresh and SfPullToRefresh as content of SfTabItem, DataTemplate of the SfListView not render content, but I can tapped to it.
Please check my source.
I need to fix this future now because my customer need that.
Thanks you.
|
<tab:SfTabItem.Content>
<Grid>
<pull:SfPullToRefresh Pulling="SfPullToRefresh_Pulling" Refreshing="SfPullToRefresh_Refreshing">
<pull:SfPullToRefresh.PullableContent>
<sync:SfListView x:Name="listView"
ItemsSource="{Binding BookInfo}"
ItemSize="100"
ItemTapped="listView_ItemTapped">
<sync:SfListView.ItemTemplate>
<DataTemplate>
<Grid Padding="10">
<Grid.RowDefinitions>
<RowDefinition Height="0.4*" />
<RowDefinition Height="0.6*" />
</Grid.RowDefinitions>
<Label x:Name="label" Text="{Binding BookName}" FontSize="21" FontAttributes="Bold"/>
<Label Grid.Row="1" Text="{Binding BookDescription}" FontSize="15"/>
</Grid>
</DataTemplate>
</sync:SfListView.ItemTemplate>
</sync:SfListView>
</pull:SfPullToRefresh.PullableContent>
</pull:SfPullToRefresh>
</Grid>
</tab:SfTabItem.Content> |
I dont want to use any View to show that, because it may cause my application spend more RAM.
No way to fix that without add other view?
There is a bug? Your team will fix or not?
Thanks.
|
<pull:SfPullToRefresh Pulling="SfPullToRefresh_Pulling" IsClippedToBounds="false" Refreshing="SfPullToRefresh_Refreshing"> |