Jump to: navigation, search

Changes


UBIK WinX Client Basics

3,114 bytes added, 15:06, 14 June 2023
/* Editors */
==== Editors ====
 
There are couple of available editors to modify different property value types. Clicking on a related property opens a dialog with type-specific editing options. Additionally, every property value editor contains buttons to commit, revert, or cancel the editing.
 
 
 
===== '''Integer value editor''' =====
With the Integer value editor it is possible to enter or edit non-decimal numbered property values.
 
 
===== '''Double value editor''' =====
The Double value editor enables the editing of property values consisting of decimal numbers.
 
 
===== '''String value editor''' =====
The String value editor enables the entering and editing of text property values, which can contain various types of characters and numbers. String properties can be configured with a [[MetaProperty#Text_2|length restriction]]. The editor doesn't allow users to confirm values exceeding the limit.
 
It is possible to apply the the content of a scanned marker to the property value.
 
<tabs>
<tab name="WinX">
String value editors in WinX contain a Scan toggle button on the right side of the textbox. Enabling it invokes a scan window including toggle buttons for QR and OCR scanning.
When scanning a code, the related content gets applied to the textbox.
</tab>
<tab name="Xamarin">
To apply the content of a marker to the String property value in Xamarin, a button with the Command <code>EditPropertyValueCommand</code> and CommandParameter <code>ScanToInput="true"</code> can be used in the UBIKPropertyArea.
<source lang = "xml">
<Button Command="{Binding EditPropertyValueCommand}">
<Button.CommandParameter>
<uc:KeyValueList>
<uc:KeyValueParameter Key="ID" Value="TEXT_READWRITE" />
<uc:KeyValueParameter Key="ScanToInput" Value="true" />
</uc:KeyValueList>
</Button.CommandParameter>
</Button>
</source>
</tab>
</tabs>
 
 
===== '''Signature editor''' =====
The Signature editor provides the possibility to edit or enter a digital Signature as the value of a Property.
Once clicked on such a property, a dialog with a signature field should pop up and enable the user to create a handwritten signature via mouse or touch. It can be created within 5 seconds. Once the time is expired, the stroke freezes. There are also buttons to commit the signature, cancel or revert the editing. Confirmation is only possible if a signature is entered.
 
[[File:signaturetest.JPG|thumb|Signature editor]]
 
 
===== '''File Reference value editor (WinX only)''' =====
The File reference value editor provides the possibility to edit or set the reference of a specific file or folder as the value of a property. There can be a filter applied to allow picking only specific file type references. Clicking on such property opens a picker and related to the assigned filter a file/folder can be selected. Via confirmation its reference gets assigned to the property.
 
 
===== '''DateTime value editor''' =====
A DateTime property can be edited or set with the DateTime value editor. Clicking on it invokes a window with a picker to select a date and time. The button "Now" selects the current date and time. Additionally, there are buttons to cancel, revert or confirm the editing. Via confirmation the selected Date and Time get assigned to the value of the property.
 
===== '''Geo Editor & Teach In''' =====
</tabs>
[[Category:Client|UBIK WinX Client Basics]]
[[Category:How-To|UBIK WinX Client Basics]]
[[Category:WinX|UBIK WinX Client Basics]]
===== '''Guid editor''' =====
264
edits