How to prevent user see the list

I provide users use deeplink to the detail page. But I don’t want them to press back or press tab to see everyone’s list. Is this possible

No, I don’t think so.

Please try this in a rich text component.

<pre><span><style>

[data-test="back-button"] {
display: none;
}

However, there’s no guarantee that the user can’t click back using a native option. I can recall Android apps having a native “back” button that isn’t configurable, not sure if that’s still the case.

I tried it and it doesn’t work for me. I know I’m not the one who posted this, but I’m just saying. :upside_down_face:

It works (in Classic Apps) if you use it correctly. Can you please show/explain how you tried to use it?

1 Like

As Darren said, I’m recommending it because OP posted a screenshot from a Classic App. It wouldn’t work the same way in a Glide Page. You have to get Business/Enterprise and maybe tweak it a bit for it to work.

1 Like

I provide user deep link to go to the detail page from barcode.
when they head to the detail page they see the back button or press on the tab then go to the list of all users which is not related.
if you have other method to get the same result that is great

So does this work for you?

If you need to hide the tab bar as well:

<pre><span><style>

[data-test="back-button"] {
display: none;
}

[id="tabBar"] {
display: none;
}