[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
Setting the SettingsFilterControl.AllowHierarchicalColumns property to true reduces ASPxGridView performance when the latter is bound to a complex datasource
Answers approved by DevExpress Support
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.
- v15.2.5Download Official Update
Hi,
this hotfix block all apllication!
I hope you can help me with this issues.
Thanks,
Rossano
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.
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:
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; } } }