Open Page if textbox = value in specified entity attribute

0
Novice trying to learn how I can achieve this? I have a text box on a page; a user enters a string in the text box and clicks an open page button. If the string matches a value in a specified entity/attribute, then it opens to the page.
asked
2 answers
1

Hi Joseph, 

This can be achieived by giving visibility to the open page button.

Create a boolean variable and use this variable to hide/display open page button. 

Initially set this boolean to false. 

Connect on change microflow for the textbox field, in the microflow, check the given string matches with entity attribute and if matches change this boolean value to true else keep it as false.

Display button only when boolean value is true. 

This way you can acheive it

answered
0

Hi Joseph, 

 

Create a boolean variable and use this variable to hide/display open page button, in that set boolean value as a false in a visibility of page.

answered