Jump to: navigation, search

Changes


Version 1.1 (Xamarin)

1,245 bytes added, 13:32, 11 November 2020
* Improved infrastructure document Files download behaviour.
[[Category:Client|Version 1.1 Xamarin]][[Category:Version 1.1|Version 1.1 Xamarin]][[Category:Xamarin|Version 1.1 Xamarin]]
=== 1.1.64 on 2020-10-16 ===
= XAML changes =
 
== Chlld list item tap behavior ==
Previously, the tap behavior to navigate to child items is included by default in the <code>ContentListView</code> style definition. Due to technical reasons, that is no longer the case.
 
If you have customized certain templates before and they contain child lists, it's now necessary to enable the navigation behavior like the following.
 
<source lang = "xml">
<DataTemplate ...
xmlns:behaviors="clr-namespace:UBIK.CPL.Behaviors;assembly=UBIK.CPL"
xmlns:controls="clr-namespace:UBIK.CPL.Controls;assembly=UBIK.CPL">
...
<controls:SfListViewExt ...
ItemsSource="{Binding Children.Items}"
Style="{DynamicResource ContentListView}">
<controls:SfListViewExt.Behaviors>
<behaviors:EventToCommandBehavior
Command="{Binding NavigateToChildrenCommand}"
Converter="{StaticResource ItemTappedEventArgsToViewModelConverter}"
EventName="ItemTapped" />
</controls:SfListViewExt.Behaviors>
</controls:SfListViewExt>
</DataTemplate>
</source>
 
== Editor templates ==
Previously, the property editor templates (of different types) did not include certain parts such as the header and the generic confirm/reset/cancel buttons.
 
Starting from this version, you can customize the entire editor area (top app bar aside) in these templates.