Hi, In our portal environment, on our task form, we use a hidden form field that

Hi, In our portal environment, on our task form, we use a hidden form field that calls a custom expression function based on the acceptance of a task. So, if isnull(tp!owner), the expression isn't called, but if it is not null, the expression is called. The expression itself sends data about the task to our internal api which then persists the task data to our internal database.

So, the question is, does anyone have any thoughts how we might achieve this same type of functionality within a SAIL-based task form?

Thanks...

OriginalPostID-130525

OriginalPostID-130525

  Discussion posts and replies are publicly visible

  • Hi,
    I think you can easily achieve this use case in your SAIL code, by simply using a local variable in place of a hidden field (on legacy form).
    When the sail form loads in your load you can populate your local variable and use it to call your custom expression rule which do the rest of your business logic in the same way as it might be doing now on legacy form.
    Hope it helps !