Hello,
I am implementing a string
attribute in an object derived from XPBaseObject
, which should be editable but displayed as "" in the UI. I tried using [PasswordPropertyText(true)]
, which initially hides the value correctly, but when saving, the attribute is emptied, and upon the next save, the value is permanently lost.
Below is the attribute
C#string fSoggettiRagSocCognNome;
[XafDisplayName("Cognome nome")]
[RuleRequiredField]
[PasswordPropertyText(true)]
public string SoggettiRagSocCognNome
{
get { return fSoggettiRagSocCognNome; }
set { SetPropertyValue(nameof(SoggettiRagSocCognNome), ref fSoggettiRagSocCognNome, value); }
}
Thank you,
Pio