In Xamarin.Forms, there is no multiline text box editor in RadDataForm.
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.
Provide capability to replace the native view with Xamarin Template.
Implement support for changing the template of the group headers.
Add an editor that loads an external view / page to edit a property value.
With the current implementation in Xamarin.Forms, the control has no built-in support for enumerable properties. The approach is to create custom renderers and use the native editors. We need to expose default editors for enumerable and custom types.
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.
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.
We need to simplify the way the editors can be customized. XAML only solution would be great.
Add FontFamily option to DataFormEditorStyle and DataFormGroupHeaderStyle.
Add TextAttributes option to DataFormEditorStyle and DataFormGroupHeaderStyle (e.g. Bold).
Allow multiple selection from the AutoCompleteEditor using Tokens and properly commit it.