Hi Praveena,
Thanks for contacting Syncfusion support.
We have checked your query and you can achieve your requirement by using CustomEditor in SfDataForm. You can create a new CustomEditor which is loaded with CustomDateTimePicker control insteadOf Xamarin.Forms.DatePicker in SfDataForm.
Please refer the below code example and comments.
// You can load your own CustomDateTimePicker control in SfDataForm by using CustomEditor
public class CustomEditor : DataFormEditor<CustomDateTimePicker Control>
{
public CustomEditor(SfDataForm dataForm) : base(dataForm)
{
}
}
// Register the CustomEditor by using below way.
dataForm.RegisterEditor("CustomDateTimePicker", new CustomSliderEditor(dataForm));
dataForm.RegisterEditor("CustomDateTime", " CustomDateTimePicker "); |
Please refer the below UG Link:
Regards,
Srinivasan