ValidationXFSample icon indicating copy to clipboard operation
ValidationXFSample copied to clipboard

Not able to set the entry value from View model

Open viveklpu2011 opened this issue 4 years ago • 1 comments

Not able to set the entry value programatically , meanse i want to fill entry from view model from validation object

viveklpu2011 avatar Jan 10 '21 15:01 viveklpu2011

Yes, You can do it by following;

In VM

public ValidatableObject<string> VariableName { get; set; } = new ValidatableObject<string>();

public TempViewModel()
{
     VariableName.Value="Name";
}

sattasundar avatar Feb 24 '21 10:02 sattasundar