With Plain Text views I am able to do that by writing this code in on input event -
if (potential.trim() == "") {
${Button3}.setEnabled(false);
}
else{
${Button3}.setEnabled(true);
}
I don't know what potential means here in BPM but this works for Plain Text Views. However when I try on change event in Decimal View Text field this doesn't work. In html inspector console I see -
Potential reference not found.
Is there any Potential like thing available for Decimal Views also?