Ticket T1284664
Visible to All Users
Duplicate

We have closed this ticket because another page addresses its subject:

Password field context dissapearing

[PasswordPropertyText(true)] Not Retaining Editable Hidden String in XPBaseObject

created 6 days ago

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

Answers approved by DevExpress Support

created 6 days ago

Hello, Pio.

The described behavior is by design. The old password is not passed to the client for security reasons. That's why the editor contains an empty string: ASPxTextBoxBase.Password.

    Comments (2)
    P P
    Pio Antonio Cartanese 6 days ago

      Hello
      The attribute in question is not a password, I would just need to hide it in UI, editable. How could I do?

      Dennis Garavsky (DevExpress) 6 days ago

        This behavior applies to any property with the [PasswordPropertyText(true)] attribute and you cannot alter it for security reasons (it's a native web browser behavior).

        If you want, you can implement a custom string PropertyEditor based on the ASP.NET WebForms control, which behaves as you want (we do not have such a control in our product line).

        Disclaimer: The information provided on DevExpress.com and affiliated web properties (including the DevExpress Support Center) is provided "as is" without warranty of any kind. Developer Express Inc disclaims all warranties, either express or implied, including the warranties of merchantability and fitness for a particular purpose. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.

        Confidential Information: Developer Express Inc does not wish to receive, will not act to procure, nor will it solicit, confidential or proprietary materials and information from you through the DevExpress Support Center or its web properties. Any and all materials or information divulged during chats, email communications, online discussions, Support Center tickets, or made available to Developer Express Inc in any manner will be deemed NOT to be confidential by Developer Express Inc. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.