Community Tip - Did you know you can set a signature that will be added to all your posts? Set it here! X
Hi,
I have a question. I spend a decent amount of time coding checks if something is allowed to happen. mostly because it is so easy to enable, disabled/hidden buttons.
You can just edit this html on the frontend:
disabled button. but in the front end I can just remove disabled="" and I can use the button.
remove display: none; and you can use the button
Is there a way to disable clicked event on runtime? Or something else that the end user can't change themselves
Solved! Go to Solution.
Hi @JU_10321794 ,
You need to think about "safe" from a different perspective:
You can always route your button click through a Validator (doesn't disable the clicking).
Is that safe to do?
If it is not possible to create a trigger event from a validator in the front end it would be safe.
I will have to look in to that.
Hi @JU_10321794 ,
You need to think about "safe" from a different perspective: