Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    TreeGrid filtering

    I have on an existing app several panel with TreeGrid getting their data from Tree objects.
    Now I'm asked to add some filtering on some node attribute value.
    I would like to use what I found in the Javadoc the method filterData(Criteria criteria) of the TreeGrid
    Code:
    AdvancedCriteria critere = new AdvancedCriteria(new Criterion("Name",OperatorId.CONTAINS,"p"));
    catalogueTreeGrid.filterData(critere);
    But it doesn't work and I get an error.
    Iwas thinking as I get this method on the TreeGrid I was not obliged to use a DataSource.
    Is it wrong?

    Alain

    #2
    Nobody to give me a clue?

    Comment

    Working...
    X