I am using this
public class VisibilityConditions : AnotherFieldVisibilityCondition<string>
{
[EditingComponent(TextInputComponent.IDENTIFIER, Label = "Field1")]
public string Field1{ get; set; }
[EditingComponent(TextInputComponent.IDENTIFIER, Label = "Field2")]
public string Field2 { get; set; }
public override bool IsVisible()
{
}
}
But I don't know how I will get the values of Field1 and Field2.