ValidationXFSample
ValidationXFSample copied to clipboard
Not able to set the entry value from View model
Not able to set the entry value programatically , meanse i want to fill entry from view model from validation object
Yes, You can do it by following;
In VM
public ValidatableObject<string> VariableName { get; set; } = new ValidatableObject<string>();
public TempViewModel()
{
VariableName.Value="Name";
}