Jump to: navigation, search

Changes


Version 5.1 (Mobile)

720 bytes added, 15 July
added note on showdocument command
* Fixed an issue where batch creating documents (by multi selecting files to attach) can be interrupted if you leave the page.
[[Category:Client|Version 5.1 (Mobile)]][[Category:Mobile|Version 5.1 (Mobile)]][[Category:Version 5.1|Version 5.1 (Mobile)]]
== Known issues ==
* Due to the change of the underlying XAML technology, the existing XAMLs for the old mobile clients (pre 5.0) are no longer compatible. Please refer to [[HowTo:Convert_Xamarin_XAMLs_to_Maui]] for migrating them to the new client.
* There are some XAML changes necessary when using the new [[Active_List_Client|Active List]] feature, or when using the new [[MRO_Objects_%28Client%29#Pick_List_Task|MRO Pick List Task]]. These XAML changes are explained [[Active_List_Client#XAML|here]].
* The possibility to trigger external opening of documents from listview level was added, but to access document-specific commands from the context of a non-document parent view you need to apply the following workaround in xaml; (namely, the "Documents.Items[0]" prefix). <syntaxhighlight lang="xml">
<behaviors:EventHandlerBehavior EventName="ItemTapped">
<behaviors:InvokeCommandAction
Command="{Binding Documents.Items[0].DocumentViewModel.ShowDocumentCommand}"
Converter="{StaticResource ItemTappedEventArgsToViewModelConverter}"/>
</behaviors:EventHandlerBehavior>
</syntaxhighlight>
** Also note that this same workaround is used in UBIKRootArea. The technical reason is that root items have no parent context from which commands are initialized, so the navigation command needs to be 'borrowed' from the first root item.
748
edits