Is it possible to replicate the search functionnality found in ListGrid and implement it for a TreeGrid to find all the tree nodes which matches the search criteria?

Here is the one for the ListGrid:

http://www.smartclient.com/smartgwt/showcase/#grid_adaptive_filter_featured_category

link|improve this question

feedback

1 Answer

up vote 0 down vote accepted

TreeGrid extends ListGrid. So whatever functionalities you're getting with ListGrid, are also available with TreeGrid. You can definitely have searching functionality in TreeGrid by these properties:

myTreeGrid.setShowFilterEditor(true);
myTreeGrid.setFilterOnKeypress(true);

But these functionalities will work only if you're using DataSource for generating the TreeGrid as per my knowledge.

Hope this information helps you.

link|improve this answer
is it possible to generate data into a datasource if you are not using a database? – Adel Boutros Feb 16 at 9:18
@Adel,Yes it's possible to fill the DataSource statically, without using database. – RAS Feb 16 at 10:05
and in this case, the filter would still work, right? – Adel Boutros Feb 16 at 11:31
@Adel, Yes, it should. – RAS Feb 16 at 11:59
How do you populate a datasource with data manually without using an xml file? – Adel Boutros Feb 29 at 17:23
show 4 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.