Changes

Mobile XAML

254 bytes added, 13 August
/* Known issues: Adding "SfPullToRefresh in combination with SfListView causing problems in MAUI" section */
<br>
[[Category:Client|Xamarin XAML]][[Category:Pages with broken file links|Xamarin XAML]][[Category:Styling|Xamarin XAML]][[Category:XAML|Xamarin XAML]][[Category:Xamarin|Xamarin XAML]]
== Converters==
A label saying ''There are no children items available!'' should only be visible if the number of children-items is 0.
[[Category:Client|Xamarin XAML]][[Category:Pages with broken file links|Xamarin XAML]][[Category:Styling|Xamarin XAML]][[Category:XAML|Xamarin XAML]][[Category:Xamarin|Xamarin XAML]]
= Advanced =
This command can be used to [[Custom_View_(Client)|display custom views]].
[[Category:Client|Xamarin XAML]][[Category:Pages with broken file links|Xamarin XAML]][[Category:Styling|Xamarin XAML]][[Category:XAML|Xamarin XAML]][[Category:Xamarin|Xamarin XAML]]
== Performance ==
</syntaxhighlight >
[[Category:Client|Xamarin XAML]][[Category:Pages with broken file links|Xamarin XAML]][[Category:Styling|Xamarin XAML]][[Category:XAML|Xamarin XAML]][[Category:Xamarin|Xamarin XAML]]
=== Images ===
</tabs>
[[Category:Client|Xamarin XAML]][[Category:Pages with broken file links|Xamarin XAML]][[Category:Styling|Xamarin XAML]][[Category:XAML|Xamarin XAML]][[Category:Xamarin|Xamarin XAML]]
==== DataTrigger to set Footer Properties in a ListView ====
</controls:UBIKContentView>
</syntaxhighlight>
 
{{UnderConstructionStart}}
=== SfPullToRefresh in combination with SfListView causing problems in MAUI ===
Due to a third-party issue, we encountered problems on MAUI Android when using the SfPullToRefresh control in combination with the Syncfusion ListView. This leads to sometimes multiple clicks being necessary for navigation. In this case, we recommend replacing the SfPullToRefresh control with a custom Refresh button, e.g. in the UBIKNavigationBar. The CommandParameter indicates whether to ignore the update expiry. We highly recommend setting it to True, otherwise it can't be guaranteed that the Refresh is performed properly.
 
<syntaxhighlight lang="xml">
<!-- Refresh -->
<Button
Grid.Column="3"
BackgroundColor="{DynamicResource UBIKDarkThemeColor}"
BorderColor="Transparent"
Command="{Binding RefreshCommand}"
CommandParameter="True"
FontSize="16"
IsVisible="{Binding CanExecuteRefreshCommand}"
Style="{DynamicResource UBIKIconButton}"
Text="{x:Static resources:UBIKIcons.ProgressRing}"
TextColor="{DynamicResource UBIKLightTextColor}" />
</syntaxhighlight>
 
{{UnderConstructionStart}}
[[Category:Client|Xamarin XAML]]
561
edits