Make it disabled by default (on the properties panel).
Then enable it after validation:
$w("#input1").onChange((event) => {
$w("#input1").valid ? $w("#button1").enable() : $w("#button1").disable();
})//use your own property id's
Make sure you put it inside $w.onReady() function. Like this:
$w.onReady(function () {
$w("#dropdown1").onChange((event) => {
$w("#dropdown1").valid ? $w("#button2").enable() : $w("#button2").disable();
})
})
@jonatandor35 Hello Sir, i have seen your code and it works, thank u but how can i use several input requirements? before the button enabled
@amar97dwarka I could help you do what you’re trying to do but you will need to open a new post per the community guidelines , instead of bumping old posts. Create a new post and share your current code and you will get some help.


