I have a TreeList control and I've enabled the AutoFilterRow and the Extended filter mode. The filtering works fine, if I type in the filter row it does narrow down the nodes displayed, but if the ancestors are still collapsed the node matching the filter remains hidden. Is there a setting, or some code I can add, which after the filter is applied will ensure all nodes which match automatically have their ancestor nodes expanded so that the matching node becomes visible?
Expand filtered nodes ancestors after match?
192 Views Asked by Andy At
1
There are 1 best solutions below
Related Questions in C#
- Passing arguments to main in C using Eclipse
- kernel module does not print packet info
- error C2016 (C requires that a struct or union has at least one member) and structs typedefs
- Drawing with ncurses, sockets and fork
- How to catch delay-import dll errors (missing dll or symbol) in MinGW(-w64)?
- Configured TTL for A record(s) backing CNAME records
- Allocating memory for pointers inside structures in functions
- Finding articulation point of undirected graph by DFS
- C first fgets() is being skipped while the second runs
- C std library don't appear to be linked in object file
- gcc static library compilation
- How to do a case-insensitive string comparison?
- C programming: Create and write 2D array of files as function
- How to read a file then store to array and then print?
- Function timeouts in C and thread
Related Questions in WINFORMS
- What is this namespace ITypeOfObjectsBoundToListBox ? Couldn't find it
- How to Require Confirmation on Form Close When there is Changed Data in a DataGridView
- self updating drawings C#
- Missingmanifestresourseexeption in auto genereted code of ImageList
- Child form implement in C# Winform
- Cannot find InvalidCastException in C# Application
- some labels appear gray in Visual Studio 2010
- c# richtextbox search with 2 forms
- Menu out of place when application is in full screen by Windows API
- How to access the Index of a changed Selection in a Datagridview
- showing a black transparent box over picturebox with an Image
- how to deselect all in RichTextBox before selecting newly found text?
- How to remove white space between border and BackColor?
- Validation DataGridView Windows Forms
- Invoke of a UserControl doesn't work
Related Questions in DEVEXPRESS-WINDOWS-UI
- Winforms application using Devexpress not starting after registering
- DevExpress WinForms NavBar mixed content
- How to grouping column header devexpress
- How to prevent auto focus of find panel in devexpress grid control
- How to represent data in a control with different column lengths in each row?
- What is the component of this component in DevExpress?
- How to make my grid group columns read-only in Windows Form DevExpress?
- Unable to delete child nodes of a parent node (Devexpress TreeList)
- Exported image filename customization from devexpress ReportPrintTool
- c#_Devexpress set datatable to gridControl
- Repository item lookUpEdit resets after losing focus
- What is the unit of measure used to specify the width of the columns of the DevExpress GridView?
- WinForms Application not opening on other computers
- In DevExpress Controls, the Property VisibleIndex of BandedGridColumn does not work
- Unable to select single column's values in WinForms DevExpress GridControl
Related Questions in XTRATREELIST
- Unable to delete child nodes of a parent node (Devexpress TreeList)
- XtraTreelist selection issue, mutliple unexpected events triggered
- Devexpress Xtratreelist - Problem with focusing node that is invisible
- Devexpress.XtraTreeList click node
- How to connection two tables(master-detail) in devexpress treelist?
- Devexpress extra tree list Focus node returns old value?
- How to prevent editors from closing when background processing updates XtraTreeList Node?
- How do you get the X,Y of a DevExpress TreeList node?
- Devexpress TreeList - how can i delete value from a cell when it is set as readonly
- Expand filtered nodes ancestors after match?
- The name"abc" doesnot exist in namespace "clr-namespace:abc"
- C# get folderpath from TreeListNode in treeList devexpress
- DevExpress TreeList not displaying child nodes and displaying as root nodes instead
- Color formatting not applied to my XtraTreeList column in devexpress at time of preview
- Is there any event which Fires when observes that a node from TreeList had the check mark checked from code?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
My solution was to update to the latest DevExpress version, 15.2, which has a ExpandNodesOnFiltering setting on the TreeList to enable this functionality.