hi good days to all,
i go through example source code here https://github.com/telerik/telerik-xamarin-forms-samples/blob/master/QSF/QSF/Examples/DataFormControl/ReservationsExample/DataFormView.xaml.cs
validation is done through code behind :
private void DoneButton_Clicked(object sender, EventArgs e)
{
this.dataForm.FormValidationCompleted += DataForm_FormValidationCompleted;
this.dataForm.ValidateAll();
}
I'm using command binding in button to call delegate command in mvvm. Is it possible to call ValidateAll() from within mvvm or specific method to achieve this ?