Mobile - Propagate fields in mobile representation

SOLVED

Hi,

Developing in V7 classes, for update 9, while in mobile environment how can i  propagate values to other fields, after updating a previous field? How should i proceed?

Thnks in advance.

Top Replies

  • Hi ,

    Try going to Administration > Authoring > Mobile > Mobile application, select your mobile application and enable the flag "Online only".

    Then, update version and give it…

Parents Reply
  • +1 in reply to Jean.ay
    verified answer

    Hi Jean,

    In order to do the right costumization you must go to:
    Administration - Mobile - Mobile Application

    Then you must edit your Mobile application and check Online Only box.

    In the Class Script you could do something like this:

    $PROPERTIES
    Case [L]CURPRO
    When "YTEST" : Gosub YTEST
    Endcase
    Return

    $YTEST
    Case ACTION
    When "PROPAGATE"
    #YOUR ACTION
    Endcase
    RETURN

    Hope this helps.

Children