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???
How can I change XafDisplayNameAttribute dynamically
Answers approved by DevExpress Support
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.
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();
}
}
}
}