Bug Report T310890
Visible to All Users

An attribute removed through the BaseInfo.RemoveAttribute method is added back after adding another attribute

created 9 years ago (modified 7 years ago)

[DevExpress Support Team: CLONED FROM S33097: Core - Make it possible to remove attributes information stored in the types info system]
Hi
There is some issue. Maybe this is bug.
RemoveAttribute method really removes attribute but if you add after that some other attribute the removed one is added back. See code:

C#
public override void CustomizeTypesInfo(DevExpress.ExpressApp.DC.ITypesInfo typesInfo) { base.CustomizeTypesInfo(typesInfo); ITypeInfo ti = typesInfo.FindTypeInfo(typeof(ITest)); BaseInfo bi = ti.FindMember("Name") as BaseInfo; BrowsableAttribute attr = bi.FindAttribute<BrowsableAttribute>(); bi.RemoveAttribute(attr); //here bi.FindAttribute<BrowsableAttribute>() == null bi.AddAttribute(new DisplayNameAttribute("The name")); //here bi.FindAttribute<BrowsableAttribute>() != null }
Comments (1)
Anatol (DevExpress) 9 years ago

    This behavior is caused by domain components' specifics. I have forwarded your ticket to our developers to research if it is possible to overcome this limitation.

    Answers approved by DevExpress Support

    created 9 years ago (modified 9 years ago)

    We have fixed the issue described in this ticket and will include the fix in our next maintenance update. To apply this solution before the official update, request a hotfix by clicking the corresponding link for product versions you require.

    Note: Hotfixes may be unavailable for beta versions and updates that are about to be released.

      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.