Ticket Q535803
Visible to All Users

How can I change XafDisplayNameAttribute dynamically

created 11 years ago

Hello, Dev! In my solution I have some BO with 2 properties. When I change value of 1st property I want to change display name of my 2d property? How can I realize it???

Answers approved by DevExpress Support

created 11 years ago (modified 11 years ago)

Hello Sergey,
If I understand you correctly, you can use the approach described in the How to Custom specify the object's Member's(Property's) caption in code at run time thread. If this solution does not suit your needs, please send us a simple sample that illustrates your scenario and describe the expected behavior in greater detail. We will be happy to help you.

    Show previous comments (2)
    DevExpress Support Team 11 years ago

      Hello Sergey,
      You're right. We have removed the SynchronizeWithInfo method and now you need to use the LoadModel one.
      Also, your code lead to an infinite loop because you use the LoadModel method in the ViewControlsCreated event handler without any conditions. That is why your code should look like this:

      C#
      void ViewControlsCreated(object sender, EventArgs e) { foreach (StringPropertyEditor item in view.GetItems<StringPropertyEditor>()) { if (((People)View.CurrentObject).Type != null && ((People)View.CurrentObject).Type.Name == "male") { if (item.Id == "m1" && item.Caption!= ""Name";"){ item.Caption = "Name"; View.LoadModel(); } } else { if (item.Id == "m1" && item.Caption!= "m1"){ item.Caption = "m1"; View.LoadModel(); } } } }
      SA SA
      Sergey Aleksandrov 11 years ago

        Thank, Alexey!!! It's what i need!

        DevExpress Support Team 11 years ago

          You're welcome.

          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.