How do I limit the lowest number and highest number a user can input in the number entry component in glide app? I thought Min & Max Value did that, but it doesn’t. This seem to not be an option in neither tab/pages screen or form screen.
Also why does the form screen allow for the required field to appear in the number entry component, but it does not appear in the page/tab screen using the same number entry component? I don’t get why this difference exist.
Lastly my app has 2 pages, I only want the user to be able to navigate using the buttons inside the app. They work just fine, so how do I hide the icon buttons that automatically appear on bottom of screen?
Any help in any of these would be greatly appreciate.
to limit the entry number, you would have to create your own entry field controlled by conditioning custom action… complicated
it works on the edit and add form… it will block submit button
required check makes sense only on forms and edits… again… to block submit button… in other cases, it is just info… useful when creating your own custom forms
you can kind of hide tabs, by dragging them into the hamburger menu… or, use CSS:
I’m looking at some CCS online to tackle # 1…yikes!
And for 2 & 3, I still think this should be an option in both forms & table/screen under the number entry component. Since you can add a button on table/screen that should help will locking it in as well if that’s something the creator wants. They’re pretty much both acting as forms in that instance imo. One is just a true form while the other feels more customized. Hopefully in a future update.
the CSS code is to make the bottom bar disappear…
to control entry… you have to create your own… very complicated.
in Glide native element, You can only control submit button if the entry is negative
That does work for form validations and edit screens. It won’t work (only showing the error, not enforcing the validation) if you’re using details screen, because entry components on details screen are not tied to a native “form submission” action. You would have to do that validation yourself, if you’re trying to add a row.
You can configure that entry component in the form/edit screen and copy it to the details screen. That required text will be copied over.