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