Articles in this section
Category / Section

How to change the editor visibility based on another editor in Xamarin.Forms DataForm (SfDataForm)

2 mins read

You can change the editor visibility based on another editor in Xamarin.Forms SfDataForm using the IsVisible property of DataFormItem.

To achieve these, you need to implement the INotifyPropertyChanged in data object model class and raise property changed notifier for all the properties.

C#: Raise property changed notifier for the DataForm’s DataObject property.

     (dataForm.DataObject as DataFormModel).PropertyChanged += OnDataObjectPropertyChanged;

C#: Here, we are changing the visibility of ConfirmPassword field based on the value of Password field.

private void OnDataObjectPropertyChanged(object sender, System.ComponentModel.PropertyChangedEventArgs e)
{
       var dataObject = sender as DataFormModel;
            
       if (e.PropertyName =="Password" && dataObject.Password != null)
       {
              var confirmPassword = dataForm.ItemManager.DataFormItems["ConfirmPassword"];
              confirmPassword.IsVisible = true;
       }
}

Output

VisiblityChanged

 

Download sample from GitHub.

Did you find this information helpful?
Yes
No
Help us improve this page
Please provide feedback or comments
Comments (0)
Please sign in to leave a comment
Access denied
Access denied