In Xamarin.Forms, there is no multiline text box editor in RadDataForm.
When the decimal separator is comma "," for example on a device with Spanish location (es-ES), and the source property is of type decimal, the DecimalEditor of RadDataForm does not receive the decimal separator.
The issue is not reproduced with properties of type double.
Hi,
I am using DataForm for my project and in the process of implementing validation. For validation, I use DataAnnotation-NonEmptyValdator for the required fields.
Is there a way to change it dynamically in runtime?.
For example, I have 2 fields, the first field is always required. However, the second field is not always required, it depends on the selected item of the first field.
Thanks
Dan
Expose an IsEnabled property for editors that can be toggled after DataForm is rendered. Currently, only Data Annotations can determine whether or not a property's editor is read-only. If a specific editor's read only state needs to be changed dynamically (e.g. due to a selection in another editor), you would need to completely reload the DataForm.
Allow multiple selection from the AutoCompleteEditor using Tokens and properly commit it.
Make it possible when tab is pressed on the keyboard the next field in the DataForm to be focused and the cursor to move to the new field.
Add FontFamily option to DataFormEditorStyle and DataFormGroupHeaderStyle.
Add TextAttributes option to DataFormEditorStyle and DataFormGroupHeaderStyle (e.g. Bold).
Currently, on Android and UWP the date and time editors display popups with "OK" and "Cancel" buttons, so one can easily dismiss the control even if a value has been selected. This will still keep the null value in the dataform. On iOS value changes are propagated immediately to the dataform, so there is no way to keep the null value.