Jump to: navigation, search

Changes


Multi Select (UBIK Client)

272 bytes added, 07:20, 10 October 2022
/* Performing Actions on selected items */
* Discard Content
* Delete Content
* Download and Checkout (UWP only*)* Checkout (UWP only*)* Release (UWP only*)* Revert local changes (UWP only*)
Actions marked with (*) are not yet included in the XAMARIN UI.
==== Copy and Paste ====
To delete selected objects, <code>InvokeOnItemsCommand</code> with a KeyValueList containing <code>Key="Command"</code> and <code>Value="DeleteContentCommand"</code> as CommandParameter can be used.
==== Download and Checkout (UWP only) ====The Download and Checkout actions are not yet included in the XAMARIN UI. As shown in the following UWP example, it can be provided like the command for Downloading, just with an additional KeyValueParameter to set the <code>Key="CheckOut"</code> to "True" as CommandParameter. It is shown in the following example:
<source lang = "xml">
<Button Command="{Binding InvokeOnItemsCommand}">
</source>
==== Checkout (UWP only) ====To checkout multiple objects, the <code>InvokeOnItemsCommand</code> with a KeyValueList containing <code>Key="Command"</code> and <code>Value="CheckOutContentCommand"</code> and a KeyValueList with <code>Key="SelectedItemsOnly"</code> set to <code>Value="True"</code> as CommandParameter can be used. Itcan It can be inspected in the following UWP example:. The Checkout action is not yet included in the XAMARIN UI.
<source lang = "xml">
<Button Command="{Binding InvokeOnItemsCommand}">
</source>
==== Release (UWP only) ====To checkout multiple objects, the <code>InvokeOnItemsCommand</code> with a KeyValueList containing <code>Key="Command"</code> and <code>Value="ReleaseContentCommand"</code> and a KeyValueList with <code>Key="SelectedItemsOnly"</code> set to <code>Value="True"</code> as CommandParameter can be used. Itcan It can be inspected in the following example:. The Release action is not yet included in the XAMARIN UI.
<source lang = "xml">
<Button Command="{Binding InvokeOnItemsCommand}">
</source>
==== Revert local changes (UWP only) ====To revert locally executed changes on objects, the <code>InvokeOnItemsCommand</code> with a KeyValueList containing <code>Key="Command"</code> and <code>Value="RevertLocalChangesCommand"</code> as CommandParameter should be used.The Revert local changes action is not yet included in the XAMARIN UI. [[Category:WinX|Mass Edit (UBIK WinX)]]
== Editing common Properties of selected items (UWP only) ==
337
edits