cancel
Showing results for 
Search instead for 
Did you mean: 

Inactive fields

former_member558470
Discoverer
0 Kudos

Hi,

We have a prototype in BUILD.me which is separated in two sections. We want the second section to become active only if one of the fields in the first section is filled with an acceptable entry (date). Is there a way in BUILD.me to have a working prototype of this? or else is there a way to do it in WEB IDE (through a button or once the field is updated)? or we are better off creating two separate apps?

Accepted Solutions (1)

Accepted Solutions (1)

mariusobert
Developer Advocate
Developer Advocate

Hi Philippe,

I don't know how to do this in build, but OpenUI5 is definitely able to do this.

You can bind the property 'enabled' of section 2 to the model of section 1 (your screenshot only shows one input for that section, so that makes it even easier). You can use a formatter to check whether section 1 has been filled out and transform it into a boolean value.

Here's a working example: https://jsfiddle.net/dewxapsg/

Regards,

Marius

Answers (1)

Answers (1)

former_member558470
Discoverer
0 Kudos

Thank you!