My client’s users are not very tech-savvy and are closing forms without Saving.
Wondering if anyone has a way to either Save data as it’s entered OR pop up a Warning Message before they leave a form allowing them to stay on the page and press Save first.
Thanks!
Marc
What about animating the button to get attention?
https://timyoung.tadabase.io/test#!/default
Add this CSS to your form’s page:
.btn-success {
animation: pulsate-fwd 0.5s ease-in-out infinite both;
border: 0px solid #fff;
border-radius: 10px;
}
@keyframes pulsate-fwd {
0% {
transform: scale(1);
}
50% {
transform: scale(1.1);
}
100% {
transform: scale(1);
}
}
Imagine my dashboard with 3 big buttons, lols, it’s like 3 hearts pumping…
Maybe a JS like in a website that doesn’t close if something “not saved”?
We can do that in a website, what about in Tada @tim.young?
This is a helpful option. Thanks Tim.