Good morning!
What do these arrows mean?
I thought it meant that the flow allowed will be forward between those screens, but not...
I need to implement 2 conditions:
Is this possible in Outsystems?
Thanks!
Hi,1 - You can achieve this using javascript
Disable Browser Back Button
$(document).ready(function() {
function disablePrev() { window.history.forward() }
window.onload = disablePrev();
window.onpageshow = function(evt) { if (evt.persisted) disableBack() }
});
2- You can achieve this by assigning specific role to the user for that particular pageThanks.
Hi Sidhharth,
do you mean something like this? It doesn't apply on the screen...
Can you please share me the oml so that i can provide the solution
Hi Diogo,
These arrows mean that there is a link on the source screen that goes to the target screen.
Regarding how to prevent it, there are a few ways:
Kind Regards,João
Don't put to much value in the UI Flow canvas.
Regarding your questions:
1. See https://www.outsystems.com/forums/discussion/68440/disable-browser-back-button/
2. Yes put validation in before user can navigate.
Regards,
Daniel