Question on behald of @christine-solid-alder:
Does anybody know what would be a good approach in a bap application to jump to a certain screen once a document is selected from an overview and opened in a detail view?
Question on behald of @christine-solid-alder:
Does anybody know what would be a good approach in a bap application to jump to a certain screen once a document is selected from an overview and opened in a detail view?
In our project, we dispatch the below action in the data provider
yield* put(
FormEngineActions.command({
activityId: activityId,
engineEvent: Commands.changeScreen({
screenName: targetScreenName
})
})
);