Bug Report T324705
Visible to All Users

Setting the SettingsFilterControl.AllowHierarchicalColumns property to true reduces ASPxGridView performance when the latter is bound to a complex datasource

created 9 years ago

[DevExpress Support Team: CLONED FROM T324489: Issues with Filter Editor (15.2 features) with objects with many properties]
If I enable AllowHierarchicalColumns = true and MaxHierarchyDepth=3, I see a noticeable delay when processing each grid request

Comments (1)
DevExpress Support Team 9 years ago

    Our developers are working on this problem…

    In an XAF application, you can work around this problem by setting the ASPxGridView.SettingsFilterControl.AllowHierarchicalColumns property to false in a ViewController:

    Code
    using DevExpress.ExpressApp; using DevExpress.ExpressApp.Web.Editors.ASPx;  namespace AppPPM.Module.Web.Controllers { public class DisableHierarchicalColumnsFilterViewController:ViewController<ListView> { public DisableHierarchicalColumnsFilterViewController():base() { TargetViewId = "PPM_ProjectPortfolio_ListView_Dashboard_NoExpand";//comment this line to apply this ViewController to all ListView controls } protected override void OnViewControlsCreated() { base.OnViewControlsCreated(); ASPxGridListEditor editor = View.Editor as ASPxGridListEditor; if(editor != null) editor.Grid.SettingsFilterControl.AllowHierarchicalColumns = false; } } }

    Answers approved by DevExpress Support

    created 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.

      Comments (3)
      Q Q
      QGI OIL AND GAS INC CARLOS RENNO 9 years ago

        This problem was consuming all memory of my server.!!!

        P P
        Pio Antonio Cartanese 9 years ago

          Hi,
          this hotfix block all apllication!
          I hope you can help me with this issues.
          Thanks,
          Rossano

          Nastya (DevExpress Support) 9 years ago

            Hello Rossano,

            To process your post more efficiently, I created a separate ticket on your behalf: T334639. This ticket is currently in our processing queue. Our team will address it as soon as we have any updates.

            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.