Announcement

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

    Does timeline support filterData() ?

    Hello. Tried doing a simple filter to the events in my timeline. Like this:

    Code:
    Criterion filter = new Criterion("name", OperatorId.EQUALS, "Banana");
    myTimeline.filterData(filter);
    Alas, when i add this logic to a buttonclickhandler and click it, nothing happens to the timeline. Have i misunderstood something?

    #2
    When you say "nothing happens", do you mean that nothing changed visually on-screen, or that you've looked in the Developer Console and can see that nothing really *did* happen? (No fetch, for example).

    As it happens, we actually just enhanced general DataBoundComponent support, like filter/criteria-handling and autoFetchData behavior, in Calendars earlier today.

    There are details about those changes in this other thread of yours: http://forums.isomorphic.com/showthread.php?t=33412

    You can test these enhancements in builds dated September 3, which will be available later today.

    Comment


      #3
      Oooooh exciting! *claps hands*

      Will try tomorrow.

      Comment

      Working...
      X