Options

possible to catch an event when filter on page is changed?

vaxo_jjvaxo_jj Member Posts: 54
edited 2010-09-10 in NAV Three Tier
Hi mibuso-people,

is it possible to somehow catch an event when a filter on a page(default ones, "Limit total to") is added or changed?
my problem is that I have a page with a subform and I want to add filters on a main page(header) and based on that filter update a sub-form.

thx

Comments

  • Options
    vaxo_jjvaxo_jj Member Posts: 54
    =Resolved=
    It can be catch in OnFind() trigger.
  • Options
    mihail_kolevmihail_kolev Member Posts: 379
    LastFilters = Text[1024]
    OnAfterGetRecord()
    IF GETFILTERS<>LastFilters THEN
    BEGIN
    LastFilters:=GETFILTERS;
    MESSAGE(GETFILTERS);
    END;
    :roll:
    -Mihail- [MCTS]
Sign In or Register to comment.